-
Notifications
You must be signed in to change notification settings - Fork 18
/
Default.sublime-commands
38 lines (38 loc) · 1.1 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
[
{
"caption": "Typescript: Open Error Panel",
"command": "typescript_error_panel",
"args": {"characters": ""},
"context": [ {"key": "typescript"} ]
},
{
"caption": "Typescript: Go to definition",
"command": "typescript_definition",
"args": {"characters": ""},
"context": [ {"key": "typescript"} ]
},
{
"caption": "Typescript: Reload Project",
"command": "typescript_reload_project",
"args": {"characters": ""},
"context": [ {"key": "typescript"} ]
},
{
"caption": "Typescript: Close projects",
"command": "typescript_kill",
"args": {"characters": ""},
"context": [ {"key": "typescript"} ]
},
{
"caption": "Typescript: Navigate in file",
"command": "typescript_structure",
"args": {"characters": ""},
"context": [ {"key": "typescript"} ]
},
{
"caption": "Typescript: View member type",
"command": "typescript_type",
"args": {"characters": ""},
"context": [ {"key": "typescript"} ]
}
]