-
Notifications
You must be signed in to change notification settings - Fork 32
/
Default (Linux).sublime-keymap
31 lines (31 loc) · 1.14 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
[
{ "keys": ["ctrl+;", "ctrl+n"], "command": "headline_move",
"args": {"forward": true, "same_level": false}, "context":
[
{ "key": "selector", "operator": "equal", "operand": "text.html.markdown" }
]
},
{ "keys": ["ctrl+;", "ctrl+p"], "command": "headline_move",
"args": {"forward": false, "same_level": false}, "context":
[
{ "key": "selector", "operator": "equal", "operand": "text.html.markdown" }
]
},
{ "keys": ["ctrl+;", "ctrl+f"], "command": "headline_move",
"args": {"forward": true, "same_level": true}, "context":
[
{ "key": "selector", "operator": "equal", "operand": "text.html.markdown" }
]
},
{ "keys": ["ctrl+;", "ctrl+b"], "command": "headline_move",
"args": {"forward": false, "same_level": true}, "context":
[
{ "key": "selector", "operator": "equal", "operand": "text.html.markdown" }
]
},
{ "keys": ["ctrl+enter"], "command": "smart_new_line", "context":
[
{ "key": "selector", "operator": "equal", "operand": "markup.heading.markdown" }
]
}
]