-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
doc: Add page on authoring VS Code extensions #318
Conversation
ec30f34
to
1c04254
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@planger overall the changes look really good, I only have minor suggestions if interested 👍
|
||
# Authoring VS Code Extensions | ||
|
||
Alongside [Theia extensions](https://theia-ide.org/docs/extensions#theia-extensions), also VS Code extensions can be used to enhance Theia applications with additional functionality, such as language support, status bar items, or tree views. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
minor:
Alongside [Theia extensions](https://theia-ide.org/docs/extensions#theia-extensions), also VS Code extensions can be used to enhance Theia applications with additional functionality, such as language support, status bar items, or tree views. | |
Alongside [Theia extensions](https://theia-ide.org/docs/extensions#theia-extensions), VS Code extensions can also be used to enhance Theia applications with additional functionality, such as language support, status bar items, or tree views. |
For the three examples we list, we might want to choose the most common, for example language support
, commands
, tree-views
, but I don't have a strong opinion.
VS Code extensions contribute functionality through a dedicated extension API, originally defined for VS Code. | ||
Theia, however, supports the extension API of VS Code, making extensions that have been developed for VS Code compatible to Theia, and vice versa. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
minor: only a suggestion:
VS Code extensions contribute functionality through a dedicated extension API, originally defined for VS Code. | |
Theia, however, supports the extension API of VS Code, making extensions that have been developed for VS Code compatible to Theia, and vice versa. | |
VS Code extensions contribute functionality through the dedicated VS Cide API, which the Theia framework also supports. This means that extensions that have been developed for VS Code are also compatible with Theia, and vice versa. |
1. Pre-installing the VS Code extension in your Theia application | ||
2. Enabling your users to install your VS Code extensions at runtime |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unfortunately tabbing wasn't sufficient, but I added a CSS rule for ol
corresponding to the existing rule for ul
.
1c04254
to
38fc4f8
Compare
Fixes eclipse-theia#316 Contributed on behalf of STMicroelectronics.
05f0c11
to
8c2bfcb
Compare
Thanks @vince-fugnitto for your feedback and suggestions! in 38fc4f8 I've applied all of them. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
Fixes #316
Contributed on behalf of STMicroelectronics.