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
26 lines (22 loc) · 1.98 KB
/
Copy pathDefault (OSX).sublime-keymap
File metadata and controls
26 lines (22 loc) · 1.98 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
[
{ "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"} }
]