-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault (Windows).sublime-keymap
29 lines (26 loc) · 1.86 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
[
{ "keys": ["alt+w"], "command": "move", "args": {"by": "lines", "forward": false} },
{ "keys": ["alt+s"], "command": "move", "args": {"by": "lines", "forward": true} },
{ "keys": ["alt+a"], "command": "move", "args": {"by": "words", "forward": false} },
{ "keys": ["alt+d"], "command": "move", "args": {"by": "word_ends", "forward": true} },
{ "keys": ["alt+q"], "command": "move_to", "args": {"to": "bol", "extend": false} },
{ "keys": ["alt+e"], "command": "move_to", "args": {"to": "eol", "extend": false} },
{ "keys": ["alt+shift+w"], "command": "move", "args": {"by": "lines", "forward": false, "extend": true} },
{ "keys": ["alt+shift+s"], "command": "move", "args": {"by": "lines", "forward": true, "extend": true} },
{ "keys": ["alt+shift+a"], "command": "move", "args": {"by": "subwords", "forward": false, "extend": true} },
{ "keys": ["alt+shift+d"], "command": "move", "args": {"by": "subword_ends", "forward": true, "extend": true} },
{ "keys": ["alt+shift+q"], "command": "move_to", "args": {"to": "bol", "extend": true} },
{ "keys": ["alt+shift+e"], "command": "move_to", "args": {"to": "eol", "extend": true} },
{ "keys": ["alt+ctrl+w"], "command": "swap_line_up" },
{ "keys": ["alt+ctrl+s"], "command": "swap_line_down" },
{ "keys": ["alt+ctrl+q"], "command": "select_lines", "args": {"forward": false} },
{ "keys": ["alt+ctrl+e"], "command": "select_lines", "args": {"forward": true} },
{ "keys": ["alt+c"], "command": "copy_path" },
{ "keys": ["alt+x"], "command": "focus_side_bar" },
//Terminus
{ "keys": ["alt+`"], "command": "toggle_terminus_panel", "args": {"cwd": "${file_path:${folder}}"}},
{ "keys": ["alt+z"], "command": "terminus_open", "args": {"cwd": "${file_path:${folder}}"}},
{ "keys": ["alt+x"], "command": "terminus_close", "context": [{ "key": "terminus_view"}]},
//SideBartools
{ "keys": ["alt+f"], "command": "side_bar_new_file" },
]