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
86 lines (79 loc) · 3.72 KB
/
constants.ts
File metadata and controls
86 lines (79 loc) · 3.72 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
82
83
84
85
86
export const PythonLanguage = { language: 'python', scheme: 'file' };
export namespace Commands {
export const Set_Interpreter = 'python.setInterpreter';
export const Exec_In_Terminal = 'python.execInTerminal';
export const Exec_Selection_In_Terminal = 'python.execSelectionInTerminal';
export const Tests_View_UI = 'python.viewTestUI';
export const Tests_Picker_UI = 'python.selectTestToRun';
export const Tests_Discover = 'python.discoverTests';
export const Tests_Run_Failed = 'python.runFailedTests';
export const Sort_Imports = 'python.sortImports';
export const Tests_Run = 'python.runtests';
export const Tests_Ask_To_Stop_Test = 'python.askToStopUnitTests';
export const Tests_Ask_To_Stop_Discovery = 'python.askToStopUnitTestDiscovery';
export const Tests_Stop = 'python.stopUnitTests';
export const Tests_ViewOutput = 'python.viewTestOutput';
export const Tests_Select_And_Run_Method = 'python.selectAndRunTestMethod';
export const Refactor_Extract_Variable = 'python.refactorExtractVariable';
export const Refaactor_Extract_Method = 'python.refactorExtractMethod';
export namespace Jupyter {
export const Get_All_KernelSpecs_For_Language = 'jupyter:getAllKernelSpecsForLanguage';
export const Get_All_KernelSpecs = 'jupyter:getAllKernelSpecs';
export const Select_Kernel = 'jupyter:selectKernel';
export const Kernel_Options = 'jupyter:kernelOptions';
export const StartKernelForKernelSpeck = 'jupyter:sartKernelForKernelSpecs';
export const ExecuteRangeInKernel = 'jupyter:execRangeInKernel';
export const ExecuteSelectionOrLineInKernel = 'jupyter.runSelectionLine';
export namespace Cell {
export const ExecuteCurrentCell = 'jupyter:execCurrentCell';
export const ExecuteCurrentCellAndAdvance = 'jupyter:execCurrentCellAndAdvance';
export const AdcanceToCell = 'jupyter:advanceToNextCell';
export const DisplayCellMenu = 'jupyter:displayCellMenu';
export const GoToPreviousCell = 'jupyter:gotToPreviousCell';
export const GoToNextCell = 'jupyter:gotToNextCell';
}
export namespace Kernel {
export const Kernel_Interrupt = 'jupyter:kernelInterrupt';
export const Kernel_Restart = 'jupyter:kernelRestart';
export const Kernel_Shut_Down = 'jupyter:kernelShutDown';
export const Kernel_Details = 'jupyter:kernelDetails';
}
}
}
export namespace Octicons {
export const Test_Pass = '$(check)';
export const Test_Fail = '$(alert)';
export const Test_Error = '$(x)';
export const Test_Skip = '$(circle-slash)';
}
export const Button_Text_Tests_View_Output = 'View Output';
export namespace Text {
export const CodeLensUnitTest = 'Test';
}
export namespace Delays {
// Max time to wait before aborting the generation of code lenses for unit tests
export const MaxUnitTestCodeLensDelay = 5000;
}
export namespace LinterErrors {
export namespace pylint {
export const InvalidSyntax = 'E0001';
}
export namespace prospector {
export const InvalidSyntax = 'F999';
}
export namespace flake8 {
export const InvalidSyntax = 'E999';
}
}
export namespace Documentation {
export const Home = '/docs/python-path/';
export namespace Jupyter {
export const GettingStarted = '/docs/jupyter_getting-started/';
export const Examples = '/docs/jupyter_examples/';
export const Setup = '/docs/jupyter_prerequisites/';
export const VersionIncompatiblity = '/docs/troubleshooting_jupyter/#Incompatible-dependencies';
}
export namespace Formatting {
export const FormatOnSave = '/docs/formatting/';
}
}