@@ -123,28 +123,50 @@ await initialize({
123123Additionally, this library exposes 23 modules that include the vscode version of some services (with some glue to make it work with monaco):
124124
125125- Extensions (included by default): ` vscode/service-override/extensions `
126+ - Support for VSCode extensions
126127- Files (included by default): ` vscode/service-override/files `
128+ - File system support
129+ - QuickAccess (included by default): ` vscode/service-override/quickaccess `
130+ - Enables the quickaccess menu in the editor
127131- Notifications: ` vscode/service-override/notifications `
132+ - Enables sending and reciving notifications
128133- Dialogs: ` vscode/service-override/dialogs `
134+ - ?
129135- Model: ` vscode/service-override/model `
136+ - Handle text models
130137- Editor: ` vscode/service-override/editor `
138+ - Enable editor support. TODO: Why is not enabled by default?
139+ - Views: ` vscode/service-override/views `
140+ - Enable full views support. Is exclusive with ` editor ` , do not use both at the same time.
131141- Configuration: ` vscode/service-override/configuration `
142+ - Alllows to change the configuration of the editor during runtime
132143- Keybindings: ` vscode/service-override/keybindings `
144+ - Enables platform specific keybindings
133145- Languages: ` vscode/service-override/languages `
146+ - Enable language support.
134147- Textmate: ` vscode/service-override/textmate `
148+ - Allows to use textmate grammars. Depends on theme service.
135149- Snippets: ` vscode/service-override/snippets `
150+ - ?
136151- VSCode themes: ` vscode/service-override/theme `
152+ - Allows to use VSCode themes.
137153- Audio cue: ` vscode/service-override/audioCue `
154+ - If enabled the editor may provides audible hints
138155- Debug: ` vscode/service-override/debug `
156+ - Activate debugging support
139157- Preferences: ` vscode/service-override/preferences `
140- - Views: ` vscode/service-override/views ` (Is exclusive with ` editor ` , do not use both at the same time)
141- - QuickAccess: ` vscode/service-override/quickaccess `
158+ - Allow to read and write preferences
142159- Output: ` vscode/service-override/output `
160+ - Output panel support
143161- Terminal: ` vscode/service-override/terminal `
162+ - Terminal panel support
144163- Search: ` vscode/service-override/search `
164+ - search panel support
145165- Markers: ` vscode/service-override/markers `
146166- Language detection worker: ` vscode/service-override/languageDetectionWorker `
167+ - ?
147168- Storage: ` vscode/service-override/storage `
169+ - Define your own storage
148170
149171Usage:
150172
0 commit comments