forked from mrchief/AsciiDoc.SublimeText2
-
Notifications
You must be signed in to change notification settings - Fork 10
/
Default (OSX).sublime-keymap
26 lines (26 loc) · 1.08 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
[
{ "keys": ["super+b"], "command": "insert_snippet", "args": {"contents": "*${0:$SELECTION}*"}, "context":
[
{"key": "selection_empty", "operator": "equal", "operand": false},
{"key": "selector", "operator": "equal", "operand": "text.html.asciidoc"}
]
},
{ "keys": ["super+i"], "command": "insert_snippet", "args": {"contents": "_${0:$SELECTION}_"}, "context":
[
{"key": "selection_empty", "operator": "equal", "operand": false},
{"key": "selector", "operator": "equal", "operand": "text.html.asciidoc"}
]
},
{ "keys": ["super+k", "super+k"], "command": "insert_snippet", "args": {"contents": "+${0:$SELECTION}+"}, "context":
[
{"key": "selection_empty", "operator": "equal", "operand": false},
{"key": "selector", "operator": "equal", "operand": "text.html.asciidoc"}
]
},
{ "keys": ["super+k", "super+f"], "command": "insert_snippet", "args": {"contents": "[role=\"filename\"]`${0:$SELECTION}`"}, "context":
[
{"key": "selection_empty", "operator": "equal", "operand": false},
{"key": "selector", "operator": "equal", "operand": "text.html.asciidoc"}
]
}
]