forked from redhat-developer/vscode-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcommands.ts
More file actions
81 lines (66 loc) · 1.87 KB
/
commands.ts
File metadata and controls
81 lines (66 loc) · 1.87 KB
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
69
70
71
72
73
74
75
76
77
78
79
80
81
'use strict';
/**
* Commonly used commands
*/
export namespace Commands {
/**
* Open Browser
*/
export const OPEN_BROWSER = 'vscode.open';
/**
* Open Output view
*/
export const OPEN_OUTPUT = 'java.open.output';
/**
* Show Java references
*/
export const SHOW_JAVA_REFERENCES = 'java.show.references';
/**
* Show Java implementations
*/
export const SHOW_JAVA_IMPLEMENTATIONS = 'java.show.implementations';
/**
* Show editor references
*/
export const SHOW_REFERENCES = 'editor.action.showReferences';
/**
* Update project configuration
*/
export const CONFIGURATION_UPDATE = 'java.projectConfiguration.update';
/**
* Ignore "Incomplete Classpath" messages
*/
export const IGNORE_INCOMPLETE_CLASSPATH = 'java.ignoreIncompleteClasspath';
/**
* Open help for "Incomplete Classpath" message
*/
export const IGNORE_INCOMPLETE_CLASSPATH_HELP = 'java.ignoreIncompleteClasspath.help';
/**
* Reload VS Code window
*/
export const RELOAD_WINDOW = 'workbench.action.reloadWindow';
/**
* Set project configuration update mode
*/
export const PROJECT_CONFIGURATION_STATUS = 'java.projectConfiguration.status';
/**
* Apply Workspace Edit
*/
export const APPLY_WORKSPACE_EDIT = 'java.apply.workspaceEdit';
/**
* Execute Workspace Command
*/
export const EXECUTE_WORKSPACE_COMMAND = 'java.execute.workspaceCommand';
/**
* Execute Workspace build (compilation)
*/
export const COMPILE_WORKSPACE = 'java.workspace.compile';
/**
* Open Java Language Server Log file
*/
export const OPEN_SERVER_LOG = 'java.open.serverLog';
/**
* Organize Java file imports command from language server
*/
export const EDIT_ORGANIZE_IMPORTS = 'java.edit.organizeImports';
}