forked from bordaigorl/sublime-evernote
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default.sublime-keymap
32 lines (32 loc) · 2.27 KB
/
Default.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
[
{ "keys": [","], "command": "run_macro_file", "args":{"file": "Packages/Evernote/EvernoteAutoTags.sublime-macro"}, "context":
[
{ "key": "setting.evernote_autocomplete", "operator": "equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "preceding_text", "operator": "regex_match", "operand": "^\\s*tags\\s*:.*$", "match_all": true },
{ "key": "eol_selector", "operator": "not_equal", "operand": "string.quoted", "match_all": true },
{ "key": "selector", "operator": "equal", "operand": "meta.metadata.evernote - meta.structure.array", "match_all": true },
{ "key": "selector", "operator": "not_equal", "operand": "markup.raw", "match_all": true }
]
},
{ "keys": [" "], "command": "auto_complete", "context":
[
{ "key": "setting.evernote_autocomplete", "operator": "equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "preceding_text", "operator": "regex_match", "operand": "^\\s*tags\\s*:\\s*$", "match_all": true },
{ "key": "eol_selector", "operator": "not_equal", "operand": "string.quoted", "match_all": true },
{ "key": "selector", "operator": "equal", "operand": "meta.metadata.evernote - meta.structure.array", "match_all": true },
{ "key": "selector", "operator": "not_equal", "operand": "markup.raw", "match_all": true }
]
},
{ "keys": [","], "command": "run_macro_file", "args":{"file": "Packages/Evernote/EvernoteAutoTagsQuoted.sublime-macro"}, "context":
[
{ "key": "setting.evernote_autocomplete", "operator": "equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "preceding_text", "operator": "regex_match", "operand": "^\\s*tags\\s*:.*$", "match_all": true },
{ "key": "eol_selector", "operator": "not_equal", "operand": "string.quoted", "match_all": true },
{ "key": "selector", "operator": "equal", "operand": "meta.metadata.evernote meta.structure.array", "match_all": true },
{ "key": "selector", "operator": "not_equal", "operand": "markup.raw", "match_all": true }
]
},
]