-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDefault.sublime-keymap
78 lines (78 loc) · 2.34 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
[
{
"keys": ["ctrl+shift+0"],
"command": "flow_show_status",
"context":
[
{
"key": "selector",
"operator": "equal",
"operand": "source.haxe,source.flow,source.hxml"
}
]
},
{
"keys": ["ctrl+shift+9"],
"command": "flow_set_project_file",
"context":
[
{
"key": "selector",
"operator": "equal",
"operand": "source.flow, source.hxml"
}
]
},
{
"keys": ["ctrl+shift+8"],
"command": "flow_set_target_build",
"context":
[
{
"key": "selector",
"operator": "equal",
"operand": "source.flow,source.haxe"
}
]
},
{
"keys": ["ctrl+i"],
"command": "haxe_generate_import",
"context":
[
{
"key": "selector",
"operator": "equal",
"operand": "source.haxe"
}
]
},
{
"keys": ["("],
"command": "chained_actions",
"args": {
"actions":["insert_snippet","auto_complete"],
"args":[{"contents": "("},{}]
},
"context": [
{ "key": "selector", "operator": "equal", "operand": "source.haxe" },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": false },
{ "key": "preceding_text", "operator": "not_regex_contains", "operand": "(if|switch|function)", "match_all": true }
]
},
{
"keys": ["("],
"command": "chained_actions",
"args": {
"actions":["insert_snippet","auto_complete"],
"args":[{"contents": "($0)"},{}]
},
"context": [
{ "key": "selector", "operator": "equal", "operand": "source.haxe" },
{ "key": "selection_empty", "operator": "equal", "operand": true, "match_all": true },
{ "key": "setting.auto_match_enabled", "operator": "equal", "operand": true },
{ "key": "preceding_text", "operator": "not_regex_contains", "operand": "(if|switch|function)", "match_all": true }
]
}
]