Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/copilot/src/util/common/test/shims/enums.ts
13405 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
export enum InteractiveEditorResponseFeedbackKind {
7
Unhelpful = 0,
8
Helpful = 1,
9
Undone = 2,
10
Accepted = 3,
11
Bug = 4
12
}
13
14
export enum TextEditorCursorStyle {
15
Line = 1,
16
Block = 2,
17
Underline = 3,
18
LineThin = 4,
19
BlockOutline = 5,
20
UnderlineThin = 6
21
}
22
23
export enum TextEditorLineNumbersStyle {
24
Off = 0,
25
On = 1,
26
Relative = 2,
27
Interval = 3,
28
}
29
30
export enum TextEditorRevealType {
31
Default = 0,
32
InCenter = 1,
33
InCenterIfOutsideViewport = 2,
34
AtTop = 3
35
}
36
37
export enum DiagnosticSeverity {
38
Error = 0,
39
Warning = 1,
40
Information = 2,
41
Hint = 3
42
}
43
44
export enum ExtensionMode {
45
Production = 1,
46
Development = 2,
47
Test = 3,
48
}
49
50
export enum ChatVariableLevel {
51
Short = 1,
52
Medium = 2,
53
Full = 3
54
}
55
56
export enum ChatLocation {
57
Panel = 1,
58
Terminal = 2,
59
Notebook = 3,
60
Editor = 4,
61
}
62
63
export enum ChatSessionStatus {
64
Failed = 0,
65
Completed = 1,
66
InProgress = 2
67
}
68
69
export enum FileType {
70
Unknown = 0,
71
File = 1,
72
Directory = 2,
73
SymbolicLink = 64
74
}
75