forked from sublimelsp/LSP-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LSP-vtsls.sublime-commands
55 lines (55 loc) · 1.56 KB
/
LSP-vtsls.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
[
{
"caption": "Preferences: LSP-vtsls Settings",
"command": "edit_settings",
"args": {
"base_file": "${packages}/LSP-vtsls/LSP-vtsls.sublime-settings",
"default": "// Settings in here override those in \"LSP-vtsls/LSP-vtsls.sublime-settings\"\n\n{\n\t$0\n}\n"
}
},
{
"caption": "LSP-vtsls: Organize Imports",
"command": "lsp_vtsls_execute",
"args": {
"command_name": "typescript.organizeImports",
"command_args": ["${file}"]
}
},
{
"caption": "LSP-vtsls: Open TS server Log",
"command": "lsp_vtsls_execute",
"args": {
"command_name": "typescript.openTsServerLog"
}
},
{
"caption": "LSP-vtsls: Reload Projects",
"command": "lsp_vtsls_execute",
"args": {
"command_name": "typescript.reloadProjects"
}
},
{
"caption": "LSP-vtsls: Select TypeScript Version",
"command": "lsp_vtsls_execute",
"args": {
"command_name": "typescript.selectTypeScriptVersion"
}
},
{
"caption": "LSP-vtsls: Sort Imports",
"command": "lsp_vtsls_execute",
"args": {
"command_name": "typescript.sortImports",
"command_args": ["${file}"]
}
},
{
"caption": "LSP-vtsls: Remove Unused Imports",
"command": "lsp_vtsls_execute",
"args": {
"command_name": "typescript.removeUnusedImports",
"command_args": ["${file}"]
}
},
]