forked from microsoft/monaco-editor-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfeatures.js
169 lines (169 loc) · 4.33 KB
/
features.js
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
module.exports = {
accessibilityHelp: {
entry: 'vs/editor/standalone/browser/accessibilityHelp/accessibilityHelp',
worker: undefined,
},
bracketMatching: {
entry: 'vs/editor/contrib/bracketMatching/bracketMatching',
worker: undefined,
},
caretOperations: {
entry: 'vs/editor/contrib/caretOperations/caretOperations',
worker: undefined,
},
clipboard: {
entry: 'vs/editor/contrib/clipboard/clipboard',
worker: undefined,
},
codeAction: {
entry: 'vs/editor/contrib/codeAction/codeActionContributions',
worker: undefined,
},
codelens: {
entry: 'vs/editor/contrib/codelens/codelensController',
worker: undefined,
},
colorDetector: {
entry: 'vs/editor/contrib/colorPicker/colorDetector',
worker: undefined,
},
comment: {
entry: 'vs/editor/contrib/comment/comment',
worker: undefined,
},
contextmenu: {
entry: 'vs/editor/contrib/contextmenu/contextmenu',
worker: undefined,
},
coreCommands: {
entry: 'vs/editor/browser/controller/coreCommands',
worker: undefined,
},
cursorUndo: {
entry: 'vs/editor/contrib/cursorUndo/cursorUndo',
worker: undefined,
},
dnd: {
entry: 'vs/editor/contrib/dnd/dnd',
worker: undefined,
},
find: {
entry: 'vs/editor/contrib/find/findController',
worker: undefined,
},
folding: {
entry: 'vs/editor/contrib/folding/folding',
worker: undefined,
},
fontZoom: {
entry: 'vs/editor/contrib/fontZoom/fontZoom',
worker: undefined,
},
format: {
entry: 'vs/editor/contrib/format/formatActions',
worker: undefined,
},
goToDefinitionCommands: {
entry: 'vs/editor/contrib/goToDefinition/goToDefinitionCommands',
worker: undefined,
},
goToDefinitionMouse: {
entry: 'vs/editor/contrib/goToDefinition/goToDefinitionMouse',
worker: undefined,
},
gotoError: {
entry: 'vs/editor/contrib/gotoError/gotoError',
worker: undefined,
},
gotoLine: {
entry: 'vs/editor/standalone/browser/quickOpen/gotoLine',
worker: undefined,
},
hover: {
entry: 'vs/editor/contrib/hover/hover',
worker: undefined,
},
inPlaceReplace: {
entry: 'vs/editor/contrib/inPlaceReplace/inPlaceReplace',
worker: undefined,
},
inspectTokens: {
entry: 'vs/editor/standalone/browser/inspectTokens/inspectTokens',
worker: undefined,
},
iPadShowKeyboard: {
entry: 'vs/editor/standalone/browser/iPadShowKeyboard/iPadShowKeyboard',
worker: undefined,
},
linesOperations: {
entry: 'vs/editor/contrib/linesOperations/linesOperations',
worker: undefined,
},
links: {
entry: 'vs/editor/contrib/links/links',
worker: undefined,
},
multicursor: {
entry: 'vs/editor/contrib/multicursor/multicursor',
worker: undefined,
},
parameterHints: {
entry: 'vs/editor/contrib/parameterHints/parameterHints',
worker: undefined,
},
quickCommand: {
entry: 'vs/editor/standalone/browser/quickOpen/quickCommand',
worker: undefined,
},
quickOutline: {
entry: 'vs/editor/standalone/browser/quickOpen/quickOutline',
worker: undefined,
},
referenceSearch: {
entry: [
'vs/editor/contrib/referenceSearch/referenceSearch',
'vs/editor/standalone/browser/referenceSearch/standaloneReferenceSearch',
],
worker: undefined,
},
rename: {
entry: 'vs/editor/contrib/rename/rename',
worker: undefined,
},
smartSelect: {
entry: 'vs/editor/contrib/smartSelect/smartSelect',
worker: undefined,
},
snippets: {
entry: 'vs/editor/contrib/snippet/snippetController2',
worker: undefined,
},
suggest: {
entry: 'vs/editor/contrib/suggest/suggestController',
worker: undefined,
},
toggleHighContrast: {
entry: 'vs/editor/standalone/browser/toggleHighContrast/toggleHighContrast',
worker: undefined,
},
toggleTabFocusMode: {
entry: 'vs/editor/contrib/toggleTabFocusMode/toggleTabFocusMode',
worker: undefined,
},
transpose: {
entry: 'vs/editor/contrib/caretOperations/transpose',
worker: undefined,
},
wordHighlighter: {
entry: 'vs/editor/contrib/wordHighlighter/wordHighlighter',
worker: undefined,
},
wordOperations: {
entry: 'vs/editor/contrib/wordOperations/wordOperations',
worker: undefined,
},
wordPartOperations: {
entry: 'vs/editor/contrib/wordPartOperations/wordPartOperations',
worker: undefined,
},
};