forked from SublimeText/Origami
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default (Windows).sublime-keymap
31 lines (26 loc) · 2.32 KB
/
Default (Windows).sublime-keymap
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
[
{ "keys": ["ctrl+k", "k"], "command": "travel_to_pane", "args": {"direction": "up"} },
{ "keys": ["ctrl+k", "l"], "command": "travel_to_pane", "args": {"direction": "right"} },
{ "keys": ["ctrl+k", "j"], "command": "travel_to_pane", "args": {"direction": "down"} },
{ "keys": ["ctrl+k", "h"], "command": "travel_to_pane", "args": {"direction": "left"} },
{ "keys": ["ctrl+k", "shift+k"], "command": "carry_file_to_pane", "args": {"direction": "up"} },
{ "keys": ["ctrl+k", "shift+l"], "command": "carry_file_to_pane", "args": {"direction": "right"} },
{ "keys": ["ctrl+k", "shift+j"], "command": "carry_file_to_pane", "args": {"direction": "down"} },
{ "keys": ["ctrl+k", "shift+h"], "command": "carry_file_to_pane", "args": {"direction": "left"} },
{ "keys": ["ctrl+k", "alt+k"], "command": "clone_file_to_pane", "args": {"direction": "up"} },
{ "keys": ["ctrl+k", "alt+l"], "command": "clone_file_to_pane", "args": {"direction": "right"} },
{ "keys": ["ctrl+k", "alt+j"], "command": "clone_file_to_pane", "args": {"direction": "down"} },
{ "keys": ["ctrl+k", "alt+h"], "command": "clone_file_to_pane", "args": {"direction": "left"} },
{ "keys": ["ctrl+k", "ctrl+k"], "command": "create_pane", "args": {"direction": "up"} },
{ "keys": ["ctrl+k", "ctrl+l"], "command": "create_pane", "args": {"direction": "right"} },
{ "keys": ["ctrl+k", "ctrl+j"], "command": "create_pane", "args": {"direction": "down"} },
{ "keys": ["ctrl+k", "ctrl+h"], "command": "create_pane", "args": {"direction": "left"} },
{ "keys": ["ctrl+k", "ctrl+shift+k"], "command": "destroy_pane", "args": {"direction": "up"} },
{ "keys": ["ctrl+k", "ctrl+shift+l"], "command": "destroy_pane", "args": {"direction": "right"} },
{ "keys": ["ctrl+k", "ctrl+shift+j"], "command": "destroy_pane", "args": {"direction": "down"} },
{ "keys": ["ctrl+k", "ctrl+shift+h"], "command": "destroy_pane", "args": {"direction": "left"} },
{ "keys": ["ctrl+k", "ctrl+alt+k"], "command": "create_pane_with_file", "args": {"direction": "up"} },
{ "keys": ["ctrl+k", "ctrl+alt+l"], "command": "create_pane_with_file", "args": {"direction": "right"} },
{ "keys": ["ctrl+k", "ctrl+alt+j"], "command": "create_pane_with_file", "args": {"direction": "down"} },
{ "keys": ["ctrl+k", "ctrl+alt+h"], "command": "create_pane_with_file", "args": {"direction": "left"} }
]