Skip to content

Commit

Permalink
doc: update README
Browse files Browse the repository at this point in the history
  • Loading branch information
Loïc Mangeonjean committed Jan 4, 2024
1 parent 5d3d882 commit ea3b8ad
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,13 +111,15 @@ await initialize({
})
```

Additionally, 25 packages that include the vscode version of some services (with some glue to make it work with monaco) are published:
Additionally, several packages that include the VSCode version of some services (with some glue to make it work with monaco) are published:

- **Extensions** (included by default): `@codingame/monaco-vscode-extensions-service-override`
- Support for VSCode extensions. A worker configuration can be past to it:
- Then, everything runs in one worker, where extensions run in an iframe, with all the implications (can be created by the bundler directly). The worker script is expected to be hosted on a separate domain.
- Support for VSCode extensions.
- A worker configuration can be provided to it:
- Then, extensions run in a worker which runs in an iframe, with all the implications (can be created by the bundler directly). The worker script is expected to be hosted on a separate domain.
- **Files** (included by default): `@codingame/monaco-vscode-files-service-override`
- It adds the memory filesystem for `file://` files, but also adds the support for lazy loaded extension files. It adds separate memory user files (e.g. config, keybindings), cache files and log files.
- It adds the overlay filesystem for `file://` files, but also adds the support for lazy loaded extension files. It adds separate memory user files (e.g. config, keybindings), cache files and log files.
- It supports adding overlay filesystems for `file://` files
- **QuickAccess** (included by default): `@codingame/monaco-vscode-quickaccess-service-override`
- Enables the quickaccess menu in the editor (press F1 or ctrl+shift+p)
- **Notifications**: `@codingame/monaco-vscode-notifications-service-override`
Expand All @@ -126,7 +128,7 @@ Additionally, 25 packages that include the vscode version of some services (with
- Enable vscode modal dialogs. It allows users to select an action to do. Those actions are exposed to the vscode API. Additionally, this service can be used by the language client to delegate questions to the user.
- **Model**: `@codingame/monaco-vscode-model-service-override`
- This service creates and takes care of model references. For example:
- Create model if content is unknown
- Create model from filesystem if content is unknown
- Count references
- Destroy models when they are no longer used
- **Editor**: `@codingame/monaco-vscode-editor-service-override`
Expand Down Expand Up @@ -188,6 +190,12 @@ Additionally, 25 packages that include the vscode version of some services (with
- Ask user it they trust the current workspace, disable some features if not
- **Extension Gallery**: `@codingame/monaco-vscode-extension-gallery-service-override`
- Support for the VSCode marketplace, it allows to install extensions from the marketplace.
- **Chat**: `@codingame/monaco-vscode-chat-service-override`
- Support for chat and inline chat features
- **Notebook**
- Support for Jupyter notebooks
- **Welcome**
- Support for welcome pages/components. *Hint*: It only makes sense to enable it when *Views* service is used.

Usage:

Expand Down

0 comments on commit ea3b8ad

Please sign in to comment.