-
Notifications
You must be signed in to change notification settings - Fork 8
/
Default.sublime-commands
62 lines (61 loc) · 1.63 KB
/
Default.sublime-commands
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
[
{
"caption": "ArcticTypescript: Errors view",
"command": "typescript_error_panel",
"context": [ {"key": "ArcticTypescript"} ]
},
{
"caption": "ArcticTypescript: Go to first error",
"command": "typescript_error_goto",
"context": [ {"key": "ArcticTypescript"} ],
"args": { "n" : 0 }
},
{
"caption": "ArcticTypescript: Go to second error",
"command": "typescript_error_goto",
"context": [ {"key": "ArcticTypescript"} ],
"args": { "n" : 1 }
},
{
"caption": "ArcticTypescript: Go to third error",
"command": "typescript_error_goto",
"context": [ {"key": "ArcticTypescript"} ],
"args": { "n" : 2 }
},
{
"caption": "ArcticTypescript: Go to fourth error",
"command": "typescript_error_goto",
"context": [ {"key": "ArcticTypescript"} ],
"args": { "n" : 3 }
},
{
"caption": "ArcticTypescript: Go to definition",
"command": "typescript_definition",
"context": [ {"key": "ArcticTypescript"} ]
},
{
"caption": "ArcticTypescript: Reopen Project (after config changes)",
"command": "typescript_reload_project",
"context": [ {"key": "ArcticTypescript"} ]
},
{
"caption": "ArcticTypescript: View member type",
"command": "typescript_type",
"context": [ {"key": "ArcticTypescript"} ]
},
{
"caption": "ArcticTypescript: Refactoring (DO NOT USE, Test only)",
"command": "typescript_references",
"context": [ {"key": "ArcticTypescript"} ]
},
{
"caption": "ArcticTypescript: Build",
"command": "typescript_build",
"args": {"characters": ""},
"context": [ {"key": "ArcticTypescriptBuild"} ]
},
{
"caption": "ArcticTypescript: Terminate All Builds",
"command": "typescript_terminate_builds"
}
]