-
Notifications
You must be signed in to change notification settings - Fork 8
/
Default.sublime-keymap
68 lines (68 loc) · 1.54 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
[
{
"command": "typescript_completion",
"keys": ["ctrl+space"],
"context": [ {"key": "ArcticTypescript"} ]
},
{
"command": "typescript_error_panel",
"keys": ["alt+shift+e", "alt+shift+e"],
"context": [ {"key": "ArcticTypescript"} ]
},
{
"command": "typescript_error_goto",
"keys": ["alt+shift+e", "alt+shift+h"],
"args": {"n": 0 },
"context": [ {"key": "ArcticTypescript"} ]
},
{
"command": "typescript_error_goto",
"keys": ["alt+shift+e", "alt+shift+j"],
"args": {"n": 1 },
"context": [ {"key": "ArcticTypescript"} ]
},
{
"command": "typescript_error_goto",
"keys": ["alt+shift+e", "alt+shift+k"],
"args": {"n": 2 },
"context": [ {"key": "ArcticTypescript"} ]
},
{
"command": "typescript_error_goto",
"keys": ["alt+shift+e", "alt+shift+l"],
"args": {"n": 3 },
"context": [ {"key": "ArcticTypescript"} ]
},
{
"command": "typescript_reload_project",
"keys": ["shift+f5"],
"context": [ {"key": "ArcticTypescript"} ]
},
{
"command": "typescript_definition",
"keys": ["f4"],
"context": [ {"key": "ArcticTypescript"} ]
},
{
"command": "typescript_type",
"keys": ["f1"],
"context": [ {"key": "ArcticTypescript"} ]
},
{
"command": "typescript_refactor",
"keys": ["f2"],
"context": [ {"key": "ArcticTypescript"} ]
},
{
"command": "typescript_build",
"args": {"characters": ""},
"keys": ["f8"],
"context": [ {"key": "ArcticTypescriptBuild"} ]
},
{
"command": "typescript_build",
"args": {"characters": ""},
"keys": ["ctrl+b"],
"context": [ {"key": "ArcticTypescriptBuild"} ]
}
]