Align features with upcoming editor release

pull/2748/head
Alex Dima 2018-08-10 15:15:33 +02:00
parent c734cbaf0c
commit 02fcbd578a
1 changed files with 17 additions and 8 deletions

View File

@ -15,6 +15,10 @@ module.exports = {
entry: 'vs/editor/contrib/clipboard/clipboard', entry: 'vs/editor/contrib/clipboard/clipboard',
worker: undefined, worker: undefined,
}, },
codeAction: {
entry: 'vs/editor/contrib/codeAction/codeActionContributions',
worker: undefined,
},
codelens: { codelens: {
entry: 'vs/editor/contrib/codelens/codelensController', entry: 'vs/editor/contrib/codelens/codelensController',
worker: undefined, worker: undefined,
@ -51,16 +55,20 @@ module.exports = {
entry: 'vs/editor/contrib/folding/folding', entry: 'vs/editor/contrib/folding/folding',
worker: undefined, worker: undefined,
}, },
fontZoom: {
entry: 'vs/editor/contrib/fontZoom/fontZoom',
worker: undefined,
},
format: { format: {
entry: 'vs/editor/contrib/format/formatActions', entry: 'vs/editor/contrib/format/formatActions',
worker: undefined, worker: undefined,
}, },
gotoDeclarationCommands: { goToDefinitionCommands: {
entry: 'vs/editor/contrib/goToDeclaration/goToDeclarationCommands', entry: 'vs/editor/contrib/goToDefinition/goToDefinitionCommands',
worker: undefined, worker: undefined,
}, },
gotoDeclarationMouse: { goToDefinitionMouse: {
entry: 'vs/editor/contrib/goToDeclaration/goToDeclarationMouse', entry: 'vs/editor/contrib/goToDefinition/goToDefinitionMouse',
worker: undefined, worker: undefined,
}, },
gotoError: { gotoError: {
@ -107,14 +115,11 @@ module.exports = {
entry: 'vs/editor/standalone/browser/quickOpen/quickCommand', entry: 'vs/editor/standalone/browser/quickOpen/quickCommand',
worker: undefined, worker: undefined,
}, },
codeAction: {
entry: 'vs/editor/contrib/codeAction/codeActionContributions',
worker: undefined,
},
quickOutline: { quickOutline: {
entry: 'vs/editor/standalone/browser/quickOpen/quickOutline', entry: 'vs/editor/standalone/browser/quickOpen/quickOutline',
worker: undefined, worker: undefined,
}, },
// TODO: here
referenceSearch: { referenceSearch: {
entry: 'vs/editor/standalone/browser/referenceSearch/standaloneReferenceSearch', entry: 'vs/editor/standalone/browser/referenceSearch/standaloneReferenceSearch',
worker: undefined, worker: undefined,
@ -155,4 +160,8 @@ module.exports = {
entry: 'vs/editor/contrib/wordOperations/wordOperations', entry: 'vs/editor/contrib/wordOperations/wordOperations',
worker: undefined, worker: undefined,
}, },
wordPartOperations: {
entry: 'vs/editor/contrib/wordPartOperations/wordPartOperations',
worker: undefined,
},
}; };