-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconstants.ts
29 lines (27 loc) · 1.19 KB
/
constants.ts
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
"use strict";
export const extensionId = "codestream";
export const extensionOutputChannelName = "CodeStream";
export const extensionQualifiedId = `CodeStream.${extensionId}`;
export enum BuiltInCommands {
CloseActiveEditor = "workbench.action.closeActiveEditor",
CloseAllEditors = "workbench.action.closeAllEditors",
CursorMove = "cursorMove",
Diff = "vscode.diff",
EditorScroll = "editorScroll",
ExecuteDocumentSymbolProvider = "vscode.executeDocumentSymbolProvider",
ExecuteCodeLensProvider = "vscode.executeCodeLensProvider",
GoToNextDiff = "workbench.action.compareEditor.nextChange",
GoToPreviousDiff = "workbench.action.compareEditor.previousChange",
GoToNextChangedFile = "codestream.showNextChangedFile",
GoToPreviousChangedFile = "codestream.showPreviousChangedFile",
IndentSelection = "editor.action.reindentselectedlines",
FormatSelection = "editor.action.formatSelection",
NextEditor = "workbench.action.nextEditor",
Open = "vscode.open",
PreviewHtml = "vscode.previewHtml",
RevealLine = "revealLine",
ReloadWindow = "workbench.action.reloadWindow",
SetContext = "setContext",
ShowCodeStream = "workbench.view.extension.codestream",
ShowReferences = "editor.action.showReferences"
}