-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDefault (Linux).sublime-keymap
35 lines (32 loc) · 2.07 KB
/
Default (Linux).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
32
33
34
35
[
// emacs navigation keys
{ "keys": ["ctrl+shift+a"], "command": "move_to", "args": {"to": "bol", "extend": false} },
{ "keys": ["ctrl+e"], "command": "move_to", "args": {"to": "eol", "extend": false} },
{ "keys": ["ctrl+p"], "command": "move", "args": {"by": "lines", "forward": false} },
{ "keys": ["ctrl+n"], "command": "move", "args": {"by": "lines", "forward": true} },
{ "keys": ["ctrl+k"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete to Hard EOL.sublime-macro"} },
{ "keys": ["ctrl+u"], "command": "run_macro_file", "args": {"file": "res://Packages/Default/Delete to Hard BOL.sublime-macro"} },
// adjust overridden keys
{ "keys": ["alt+p"], "command": "show_overlay", "args": {"overlay": "goto", "show_files": true} },
{ "keys": ["alt+u"], "command": "soft_undo" },
{ "keys": ["alt+k", "alt+b"], "command": "toggle_side_bar" },
// move major commands to alt+
{ "keys": ["alt+shift+p"], "command": "show_overlay", "args": {"overlay": "command_palette"} },
{ "keys": ["alt+r"], "command": "show_overlay", "args": {"overlay": "goto", "text": "@"} },
{ "keys": ["alt+;"], "command": "show_overlay", "args": {"overlay": "goto", "text": "#"} },
{ "keys": ["alt+l"], "command": "show_overlay", "args": {"overlay": "goto", "text": ":"} },
{ "keys": ["alt+i"], "command": "show_panel", "args": {"panel": "incremental_find", "reverse": false} },
{ "keys": ["alt+shift+i"], "command": "show_panel", "args": {"panel": "incremental_find", "reverse": true} },
{"command": "anaconda_goto", "keys": ["control+shift+g"]},
{"command": "anaconda_find_usages", "keys": ["super+f"]},
{"command": "anaconda_doc", "keys": ["control+shift+d"]},
{"command": "anaconda_auto_format", "keys": ["super+r"]},
{"command": "anaconda_goto", "keys": ["g", "d"],
"context":
[
{ "key": "selector", "operator": "equal", "operand": "source.python" },
{ "key": "setting.command_mode", "operand": true },
{ "key": "setting.is_widget", "operand": false }
]
}
]