diff --git a/features.js b/features.js index 2b6bbaa2..ca3b0011 100644 --- a/features.js +++ b/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, + }, };