-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDefault.sublime-keymap
More file actions
35 lines (35 loc) · 896 Bytes
/
Default.sublime-keymap
File metadata and controls
35 lines (35 loc) · 896 Bytes
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
[
{
"description": "previous layer",
"keys": ["ctrl+alt+super+3"], "command": "codemarks",
"args": {"direction": "prev", "subcommand": "layer_swap"}
},
{
"description": "next layer",
"keys": ["ctrl+alt+super+5"], "command": "codemarks",
"args": {"direction": "next", "subcommand": "layer_swap"}
},
{
"description": "previous mark",
"keys": ["f9"], "command": "prev_bookmark"
},
{
"description": "next mark",
"keys": ["f10"], "command": "next_bookmark"
},
{
"description": "mark line",
"keys": ["ctrl+alt+super+4"], "command": "codemarks",
"args": {"subcommand": "mark_line"}
},
{
"description": "remove current marks",
"keys": ["super+alt+f12"], "command": "codemarks",
"args": {"subcommand": "clear_marks"}
},
{
"description": "remove all marks",
"keys": ["super+shift+f12"], "command": "codemarks",
"args": {"subcommand": "clear_all"}
},
]