forked from erinata/SublimeBullet
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Default (OSX).sublime-keymap
36 lines (34 loc) · 1.6 KB
/
Default (OSX).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
36
[
{
"keys": ["tab"], "command": "indent", "context":
[
{ "key": "selector", "operator": "equal", "operand": "markup.list.unnumbered.markdown" },
{ "key": "preceding_text", "operator": "regex_match", "operand": "^( *|\\t*)(\\*|\\-|\\>|\\+|[0-9]+\\.)(.*)", "match_all": true },
{ "key": "auto_complete_visible", "operator": "equal", "operand": false},
{ "key": "last_command", "operator": "not_equal", "operand": "insert_best_completion" }
]
},
{
"keys": ["tab"], "command": "indent", "context":
[
{ "key": "selector", "operator": "equal", "operand": "meta.paragraph.list.markdown" },
{ "key": "preceding_text", "operator": "regex_match", "operand": "^( *|\\t*)(\\*|\\-|\\>|\\+|[0-9]+\\.)(.*)", "match_all": true },
{ "key": "auto_complete_visible", "operator": "equal", "operand": false},
{ "key": "last_command", "operator": "not_equal", "operand": "insert_best_completion" }
]
},
{
"keys": ["shift+tab"], "command": "unindent", "context":
[
{ "key": "selector", "operator": "equal", "operand": "markup.list.unnumbered.markdown" },
{ "key": "preceding_text", "operator": "regex_match", "operand": "^( +|\\t+)(\\*|\\-|\\>|\\+|[0-9]+\\.)(.*)", "match_all": true }
]
},
{
"keys": ["shift+tab"], "command": "unindent", "context":
[
{ "key": "selector", "operator": "equal", "operand": "meta.paragraph.list.markdown" },
{ "key": "preceding_text", "operator": "regex_match", "operand": "^( +|\\t+)(\\*|\\-|\\>|\\+|[0-9]+\\.)(.*)", "match_all": true }
]
}
]