-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsublime-keymap
19 lines (19 loc) · 1.36 KB
/
sublime-keymap
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
[
{ "keys": ["alt+b"], "command": "move", "args": {"by": "subwords", "forward": false } },
{ "keys": ["alt+f"], "command": "move", "args": {"by": "subword_ends", "forward": true } },
{ "keys": ["alt+d"], "command": "delete_word", "args": { "forward": true, "sub_words": true } },
{ "keys": ["alt+u"], "command": "upper_case" },
{ "keys": ["alt+l"], "command": "lower_case" },
{ "keys": ["home"], "command": "move_to", "args": {"to": "bol"} },
{ "keys": ["end"], "command": "move_to", "args": {"to": "eol"} },
{ "keys": ["shift+home"], "command": "move_to", "args": {"to": "bol", "extend": true } },
{ "keys": ["shift+end"], "command": "move_to", "args": {"to": "eol", "extend": true} },
{ "keys": ["ctrl+home"], "command": "move_to", "args": {"to": "bof"} },
{ "keys": ["ctrl+end"], "command": "move_to", "args": {"to": "eof"} },
{ "keys": ["shift+ctrl+home"], "command": "move_to", "args": {"to": "bof", "extend": true } },
{ "keys": ["shift+ctrl+end"], "command": "move_to", "args": {"to": "eof", "extend": true} },
{ "keys": ["super+home"], "command": "move_to", "args": {"to": "bof"} },
{ "keys": ["super+end"], "command": "move_to", "args": {"to": "eof"} },
{ "keys": ["shift+super+home"], "command": "move_to", "args": {"to": "bof", "extend": true } },
{ "keys": ["shift+super+end"], "command": "move_to", "args": {"to": "eof", "extend": true} },
]