dotfiles/.config/sublime-text/Packages/User/Default.sublime-keymap

14 lines
827 B
Plaintext

// Key Bindings - User
[
// Override first default key binding shipped by `Terminal`.
{ "keys": ["ctrl+shift+t"], "command": "reopen_last_file" },
// `Origami` bindings.
{ "keys": ["alt+up"], "command": "travel_to_pane", "args": {"direction": "up"} },
{ "keys": ["alt+right"], "command": "travel_to_pane", "args": {"direction": "right"} },
{ "keys": ["alt+down"], "command": "travel_to_pane", "args": {"direction": "down"} },
{ "keys": ["alt+left"], "command": "travel_to_pane", "args": {"direction": "left"} },
{ "keys": ["ctrl+shift+o"], "command": "create_pane", "args": {"direction": "down", "give_focus": true} },
{ "keys": ["ctrl+shift+e"], "command": "create_pane", "args": {"direction": "right", "give_focus": true} },
{ "keys": ["ctrl+shift+w"], "command": "destroy_pane", "args": {"direction": "self"} },
]