-
Notifications
You must be signed in to change notification settings - Fork 4
/
LSP-jdtls.sublime-commands
58 lines (58 loc) · 1.55 KB
/
LSP-jdtls.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
[
{
"caption": "Preferences: LSP-jdtls Settings",
"command": "edit_settings",
"args": {
"base_file": "${packages}/LSP-jdtls/LSP-jdtls.sublime-settings",
"default": "// Settings in here override those in \"LSP-jdtls/LSP-jdtls.sublime-settings\"\n{\n\t$0\n}\n"
}
},
// LSP text / window commands
{
"caption": "LSP-jdtls: Build Workspace",
"command": "lsp_jdtls_build_workspace",
},
{
"caption": "LSP-jdtls: Refresh Workspace",
"command": "lsp_jdtls_refresh_workspace",
},
{
"caption": "LSP-jdtls: Generate tests...",
"command": "lsp_jdtls_generate_tests",
},
{
"caption": "LSP-jdtls: Goto Test",
"command": "lsp_jdtls_goto_test",
"args": {
"goto_test_or_implementation": true
}
},
{
"caption": "LSP-jdtls: Run Test Class",
"command": "lsp_jdtls_run_test_class",
},
{
"caption": "LSP-jdtls: Run Test At Cursor",
"command": "lsp_jdtls_run_test_at_cursor",
},
{
"caption": "LSP-jdtls: Run Test...",
"command": "lsp_jdtls_run_test",
},
{
"caption": "LSP-jdtls: Goto Implementation",
"command": "lsp_jdtls_goto_test",
"args": {
"goto_test_or_implementation": false
}
},
// Text / window commands
{
"caption": "LSP-jdtls: Clear data",
"command": "jdtls_clear_data",
},
{
"caption": "LSP-jdtls",
"command": "jdtls_input",
}
]