forked from DonJayamanne/pythonVSCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.ts
More file actions
32 lines (30 loc) · 1.39 KB
/
constants.ts
File metadata and controls
32 lines (30 loc) · 1.39 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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
'use strict';
export const COMPLETION = 'COMPLETION';
export const DEFINITION = 'DEFINITION';
export const HOVER_DEFINITION = 'HOVER_DEFINITION';
export const REFERENCE = 'REFERENCE';
export const SIGNATURE = 'SIGNATURE';
export const SYMBOL = 'SYMBOL';
export const FORMAT_SORT_IMPORTS = 'FORMAT.SORT_IMPORTS';
export const FORMAT = 'FORMAT.FORMAT';
export const EDITOR_LOAD = 'EDITOR.LOAD';
export const LINTING = 'LINTING';
export const GO_TO_OBJECT_DEFINITION = 'GO_TO_OBJECT_DEFINITION';
export const UPDATE_PYSPARK_LIBRARY = 'UPDATE_PYSPARK_LIBRARY';
export const REFACTOR_RENAME = 'REFACTOR_RENAME';
export const REFACTOR_EXTRACT_VAR = 'REFACTOR_EXTRACT_VAR';
export const REFACTOR_EXTRACT_FUNCTION = 'REFACTOR_EXTRACT_FUNCTION';
export const REPL = 'REPL';
export const PYTHON_INTERPRETER = 'PYTHON_INTERPRETER';
export const WORKSPACE_SYMBOLS_BUILD = 'WORKSPACE_SYMBOLS.BUILD';
export const WORKSPACE_SYMBOLS_GO_TO = 'WORKSPACE_SYMBOLS.GO_TO';
export const EXECUTION_CODE = 'EXECUTION_CODE';
export const EXECUTION_DJANGO = 'EXECUTION_DJANGO';
export const DEBUGGER = 'DEBUGGER';
export const UNITTEST_STOP = 'UNITTEST.STOP';
export const UNITTEST_RUN = 'UNITTEST.RUN';
export const UNITTEST_DISCOVER = 'UNITTEST.DISCOVER';
export const UNITTEST_VIEW_OUTPUT = 'UNITTEST.VIEW_OUTPUT';
export const FEEDBACK = 'FEEDBACK';