create-mori
Version:
Quickly create project templates to support the required repositories as much as possible
13 lines (10 loc) • 381 B
text/typescript
import { defineExtension, useCommand } from 'reactive-vscode';
import { window } from 'vscode';
// See https://kermanx.com/reactive-vscode/guide/
// for the doc about the reactive-vscode
const { activate, deactivate } = defineExtension(() => {
useCommand('mori.hello', () => {
window.showInformationMessage('Hello Mori');
});
});
export { activate, deactivate };