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
61 lines (50 loc) · 1.35 KB
/
commands.ts
File metadata and controls
61 lines (50 loc) · 1.35 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
'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 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';
/**
* Open Java Language Server Log file
*/
export const OPEN_SERVER_LOG = 'java.open.serverLog';
}