-
Notifications
You must be signed in to change notification settings - Fork 15
/
Default (OSX).sublime-keymap
59 lines (59 loc) · 2.14 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
[
{
"keys": ["ctrl+d"], "command": "lines_to_stata"
},
{
"keys": ["super+enter"], "command": "lines_to_stata"
},
{
"keys": ["ctrl+r"], "command": "lines_stata_run"
},
{ "keys": ["f1"], "command": "stata_help", "context":
[
{ "key": "selector", "operator": "equal", "operand": "source.stata" }
]
} ,
{ "keys": ["f2"], "command": "stata_bro", "context":
[
{ "key": "selector", "operator": "equal", "operand": "source.stata" }
]
} ,
{
"keys": ["ctrl+shift+d"], "command": "piu_sign"
},
{ "keys": ["super+/"], "command": "stata_toggle", "context":
[
{ "key": "selector", "operator": "equal", "operand": "source.stata" }
]
},
{
"keys": ["ctrl+s"], "command": "insert", "args": {"characters": "\n/* ------- break line ------- (by the Stata editor for macOS (piu_sign) ) */ \n"}
},
{ "keys": ["super+`"], "command": "stata_local", "context":
[
{ "key": "selector", "operator": "equal", "operand": "source.stata" }
]
},
{ "keys": ["$"], "command": "stata_macro", "context":
[
{ "key": "selector", "operator": "equal", "operand": "source.stata" }
]
},
{ "keys": ["`"], "command": "insert_snippet", "args": {"contents": "`$0'"}, "context":
[
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "eol_selector", "operator": "not_equal", "operand": "string.quoted.single", "match_all": true },
{ "key": "selector", "operator": "equal", "operand": "source.stata", "match_all": true }
]
},
{ "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": "source.stata", "match_all": true }
]
},
{ "keys": ["f5"], "command": "insert_datetime"},
{ "keys": ["ctrl+="], "command": "reindent", "args": {"single_line": false}}
]