mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 17:25:39 +01:00
Align features with upcoming editor release
This commit is contained in:
parent
c734cbaf0c
commit
02fcbd578a
1 changed files with 17 additions and 8 deletions
25
features.js
25
features.js
|
|
@ -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,
|
||||||
|
},
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue