coc-java
Version:
Java langauage extension for coc.nvim
74 lines (73 loc) • 2.02 kB
TypeScript
/**
* Commonly used commands
*/
export declare namespace Commands {
/**
* Open Browser
*/
const OPEN_BROWSER = "vscode.open";
/**
* Open Output view
*/
const OPEN_OUTPUT = "java.open.output";
/**
* Show Java references
*/
const SHOW_JAVA_REFERENCES = "java.show.references";
/**
* Show Java implementations
*/
const SHOW_JAVA_IMPLEMENTATIONS = "java.show.implementations";
/**
* Show editor references
*/
const SHOW_REFERENCES = "editor.action.showReferences";
/**
* Update project configuration
*/
const CONFIGURATION_UPDATE = "java.projectConfiguration.update";
/**
* Ignore "Incomplete Classpath" messages
*/
const IGNORE_INCOMPLETE_CLASSPATH = "java.ignoreIncompleteClasspath";
/**
* Open help for "Incomplete Classpath" message
*/
const IGNORE_INCOMPLETE_CLASSPATH_HELP = "java.ignoreIncompleteClasspath.help";
/**
* Reload VS Code window
*/
const RELOAD_WINDOW = "editor.action.restart";
/**
* Set project configuration update mode
*/
const PROJECT_CONFIGURATION_STATUS = "java.projectConfiguration.status";
/**
* Apply Workspace Edit
*/
const APPLY_WORKSPACE_EDIT = "java.apply.workspaceEdit";
/**
* Execute Workspace Command
*/
const EXECUTE_WORKSPACE_COMMAND = "java.execute.workspaceCommand";
/**
* Execute Workspace build (compilation)
*/
const COMPILE_WORKSPACE = "java.workspace.compile";
/**
* Open Java Language Server Log file
*/
const OPEN_SERVER_LOG = "java.open.serverLog";
/**
* Organize Java file imports command from language server
*/
const EDIT_ORGANIZE_IMPORTS = "java.edit.organizeImports";
/**
* Open Java formatter settings
*/
const OPEN_FORMATTER = "java.open.formatter.settings";
/**
* Clean the Java language server workspace
*/
const CLEAN_WORKSPACE = "java.clean.workspace";
}