forked from SublimeText/Origami
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefault (OSX).sublime-keymap
More file actions
32 lines (26 loc) · 2.42 KB
/
Default (OSX).sublime-keymap
File metadata and controls
32 lines (26 loc) · 2.42 KB
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
32
[
{ "keys": ["super+k", "up"], "command": "travel_to_pane", "args": {"direction": "up"} },
{ "keys": ["super+k", "right"], "command": "travel_to_pane", "args": {"direction": "right"} },
{ "keys": ["super+k", "down"], "command": "travel_to_pane", "args": {"direction": "down"} },
{ "keys": ["super+k", "left"], "command": "travel_to_pane", "args": {"direction": "left"} },
{ "keys": ["super+k", "shift+up"], "command": "carry_file_to_pane", "args": {"direction": "up"} },
{ "keys": ["super+k", "shift+right"], "command": "carry_file_to_pane", "args": {"direction": "right"} },
{ "keys": ["super+k", "shift+down"], "command": "carry_file_to_pane", "args": {"direction": "down"} },
{ "keys": ["super+k", "shift+left"], "command": "carry_file_to_pane", "args": {"direction": "left"} },
{ "keys": ["super+k", "alt+up"], "command": "clone_file_to_pane", "args": {"direction": "up"} },
{ "keys": ["super+k", "alt+right"], "command": "clone_file_to_pane", "args": {"direction": "right"} },
{ "keys": ["super+k", "alt+down"], "command": "clone_file_to_pane", "args": {"direction": "down"} },
{ "keys": ["super+k", "alt+left"], "command": "clone_file_to_pane", "args": {"direction": "left"} },
{ "keys": ["super+k", "super+up"], "command": "create_pane", "args": {"direction": "up"} },
{ "keys": ["super+k", "super+right"], "command": "create_pane", "args": {"direction": "right"} },
{ "keys": ["super+k", "super+down"], "command": "create_pane", "args": {"direction": "down"} },
{ "keys": ["super+k", "super+left"], "command": "create_pane", "args": {"direction": "left"} },
{ "keys": ["super+k", "super+shift+up"], "command": "destroy_pane", "args": {"direction": "up"} },
{ "keys": ["super+k", "super+shift+right"], "command": "destroy_pane", "args": {"direction": "right"} },
{ "keys": ["super+k", "super+shift+down"], "command": "destroy_pane", "args": {"direction": "down"} },
{ "keys": ["super+k", "super+shift+left"], "command": "destroy_pane", "args": {"direction": "left"} },
{ "keys": ["super+k", "super+alt+up"], "command": "create_pane_with_file", "args": {"direction": "up"} },
{ "keys": ["super+k", "super+alt+right"], "command": "create_pane_with_file", "args": {"direction": "right"} },
{ "keys": ["super+k", "super+alt+down"], "command": "create_pane_with_file", "args": {"direction": "down"} },
{ "keys": ["super+k", "super+alt+left"], "command": "create_pane_with_file", "args": {"direction": "left"} }
]