Skip to content

Instantly share code, notes, and snippets.

@GrandSchtroumpf
Created May 7, 2020 14:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save GrandSchtroumpf/cf2c5f2281c7c3c579dafaaa6467c3b4 to your computer and use it in GitHub Desktop.
Save GrandSchtroumpf/cf2c5f2281c7c3c579dafaaa6467c3b4 to your computer and use it in GitHub Desktop.
Markdium-VSCode extension inside a nx workspace
import { commands, ExtensionContext, window } from 'vscode';
// On activation
export function activate(context: ExtensionContext) {
// Register command "start"
commands.registerCommand('start', () => {
window.showInformationMessage('Hello World');
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment