Align features with upcoming editor release
parent
c734cbaf0c
commit
02fcbd578a
25
features.js
25
features.js
|
@ -15,6 +15,10 @@ module.exports = {
|
|||
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,
|
||||
|
@ -51,16 +55,20 @@ module.exports = {
|
|||
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,
|
||||
},
|
||||
gotoDeclarationCommands: {
|
||||
entry: 'vs/editor/contrib/goToDeclaration/goToDeclarationCommands',
|
||||
goToDefinitionCommands: {
|
||||
entry: 'vs/editor/contrib/goToDefinition/goToDefinitionCommands',
|
||||
worker: undefined,
|
||||
},
|
||||
gotoDeclarationMouse: {
|
||||
entry: 'vs/editor/contrib/goToDeclaration/goToDeclarationMouse',
|
||||
goToDefinitionMouse: {
|
||||
entry: 'vs/editor/contrib/goToDefinition/goToDefinitionMouse',
|
||||
worker: undefined,
|
||||
},
|
||||
gotoError: {
|
||||
|
@ -107,14 +115,11 @@ module.exports = {
|
|||
entry: 'vs/editor/standalone/browser/quickOpen/quickCommand',
|
||||
worker: undefined,
|
||||
},
|
||||
codeAction: {
|
||||
entry: 'vs/editor/contrib/codeAction/codeActionContributions',
|
||||
worker: undefined,
|
||||
},
|
||||
quickOutline: {
|
||||
entry: 'vs/editor/standalone/browser/quickOpen/quickOutline',
|
||||
worker: undefined,
|
||||
},
|
||||
// TODO: here
|
||||
referenceSearch: {
|
||||
entry: 'vs/editor/standalone/browser/referenceSearch/standaloneReferenceSearch',
|
||||
worker: undefined,
|
||||
|
@ -155,4 +160,8 @@ module.exports = {
|
|||
entry: 'vs/editor/contrib/wordOperations/wordOperations',
|
||||
worker: undefined,
|
||||
},
|
||||
wordPartOperations: {
|
||||
entry: 'vs/editor/contrib/wordPartOperations/wordPartOperations',
|
||||
worker: undefined,
|
||||
},
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue