forked from nojanath/SublimeKSP
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Default (OSX).sublime-keymap
executable file
·39 lines (38 loc) · 1.43 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
[
{
"keys": ["super+k"],
"command" : "compile_ksp",
"context": [{ "key": "selector", "operator": "equal", "operand": "source.ksp" }]
},
{
"keys": ["super+shift+k"],
"command" : "recompile_ksp",
"context": [{ "key": "selector", "operator": "equal", "operand": "source.ksp" }]
},
{
"keys": ["super+alt+k"],
"command": "compile_all_open_ksp",
"context": [{ "key": "selector", "operator": "equal", "operand": "source.ksp" }]
},
{
"keys": ["super+alt+c"],
"command": "numeric_sequence",
"context": [{ "key": "selector", "operator": "equal", "operand": "source.ksp" }]
},
{
"keys": ["alt+o"],
"command": "open_path_from_import_or_pragma",
"context": [{ "key": "selector", "operator": "equal", "operand": "source.ksp" }]
},
{
"keys": ["enter"],
"command": "ksp_on_enter",
"context": [{ "key": "selector", "operator": "equal", "operand": "source.ksp", },
{ "key": "auto_complete_visible", "operator": "equal", "operand": false }]
},
{
"keys": ["super+alt+u"],
"command": "ksp_uncompress_code",
"context": [{ "key": "selector", "operator": "equal", "operand": "source.ksp" }]
},
]