mirror of
https://github.com/microsoft/vscode-extension-samples.git
synced 2026-06-13 07:10:26 +08:00
25 lines
767 B
Markdown
25 lines
767 B
Markdown
# vscode-extension-samples
|
|
|
|
Sample code illustrating the VS Code extension APIs.
|
|
|
|
* [Editor Decoration](/decorator-sample/README.md)
|
|
* [Virtual Documents](/contentprovider-sample/README.md)
|
|
* [Language Provider](/languageprovider-sample/README.md)
|
|
* [Preview Html](/previewhtml-sample/README.md)
|
|
* [Vim](/vim-sample/README.md)
|
|
* [Integrated Terminal](/terminal-example/README.md)
|
|
* [Status Bar](/statusbar-sample/README.md)
|
|
* Experimental: [Tree Explorer](/tree-explorer/README.md)
|
|
|
|
# How to run locally
|
|
|
|
* `git clone`
|
|
* `npm install`
|
|
* run one of
|
|
* `npm run compile-decorator`,
|
|
* `npm run compile-previewhtml`
|
|
* `npm run compile-contentprovider`
|
|
* `npm run compile-languageprovider`
|
|
* `npm run compile-statusbar`
|
|
* launch the sample from the debug viewlet
|