-
Notifications
You must be signed in to change notification settings - Fork 286
/
Default.sublime-keymap
85 lines (85 loc) · 4.7 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
[
// add italic&bold for empty selection
{ "keys": ["*"], "command": "insert_snippet", "args": {"contents": "*${0:$SELECTION}*"}, "context":
[
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true},
{ "key": "preceding_text", "operator": "regex_match", "operand": " |\t|\\*|^|$", "match_all": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "selector", "operator": "equal", "operand": "text.todo"}
]
},
{ "keys": ["_"], "command": "insert_snippet", "args": {"contents": "_${0:$SELECTION}_"}, "context":
[
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true},
{ "key": "preceding_text", "operator": "regex_match", "operand": " |\t|_|^|$", "match_all": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "selector", "operator": "equal", "operand": "text.todo"}
]
},
// add italic&bold for non-empty selection
{ "keys": ["*"], "command": "insert_snippet", "args": {"contents": "*${0:$SELECTION}*"}, "context":
[
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true},
{ "key": "selection_empty", "operator": "equal", "operand": false, "match_all": true },
{ "key": "selector", "operator": "equal", "operand": "text.todo"}
]
},
{ "keys": ["_"], "command": "insert_snippet", "args": {"contents": "_${0:$SELECTION}_"}, "context":
[
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true},
{ "key": "selection_empty", "operator": "equal", "operand": false, "match_all": true },
{ "key": "selector", "operator": "equal", "operand": "text.todo"}
]
},
// remove bold with same keys, toggle
{ "keys": ["*"], "command": "plain_tasks_remove_bold", "context":
[
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true},
{ "key": "selector", "operator": "equal", "operand": "text.todo todo.bold"}
]
},
{ "keys": ["_"], "command": "plain_tasks_remove_bold", "context":
[
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true},
{ "key": "selector", "operator": "equal", "operand": "text.todo todo.bold"}
]
},
// same for single selection, we probably should fix it in syntax: **** defined as italic, but in fact it is [supposed to be] bold
{ "keys": ["*"], "command": "plain_tasks_remove_bold", "context":
[
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "preceding_text", "operator": "regex_contains", "operand": "\\**$", "match_all": true },
{ "key": "following_text", "operator": "regex_contains", "operand": "^\\**", "match_all": true },
{ "key": "selector", "operator": "equal", "operand": "text.todo todo.italic"}
]
},
{ "keys": ["_"], "command": "plain_tasks_remove_bold", "context":
[
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "preceding_text", "operator": "regex_contains", "operand": "__$", "match_all": true },
{ "key": "following_text", "operator": "regex_contains", "operand": "^__", "match_all": true },
{ "key": "selector", "operator": "equal", "operand": "text.todo todo.italic"}
]
},
// save keystroke on backspace
{ "keys": ["backspace"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Left Right.sublime-macro"}, "context":
[
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "preceding_text", "operator": "regex_contains", "operand": "\\*$", "match_all": true },
{ "key": "following_text", "operator": "regex_contains", "operand": "^\\*", "match_all": true },
{ "key": "selector", "operator": "equal", "operand": "text.todo"}
]
},
{ "keys": ["backspace"], "command": "run_macro_file", "args": {"file": "Packages/Default/Delete Left Right.sublime-macro"}, "context":
[
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "preceding_text", "operator": "regex_contains", "operand": "_$", "match_all": true },
{ "key": "following_text", "operator": "regex_contains", "operand": "^_", "match_all": true },
{ "key": "selector", "operator": "equal", "operand": "text.todo"}
]
}
]