We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ab50c5 commit 7ab8fa9Copy full SHA for 7ab8fa9
src/index.ts
@@ -1,12 +1,10 @@
1
import { defineExtension } from "reactive-vscode";
2
-import { window, commands } from "vscode";
+import { commands } from "vscode";
3
4
import { browseCommand, browseCommandHandler } from "./commands/browse";
5
import { searchCommand, searchCommandHandler } from "./commands/search";
6
7
const { activate, deactivate } = defineExtension((context) => {
8
- window.showInformationMessage("Hello");
9
-
10
context.subscriptions.push(
11
commands.registerCommand(browseCommand, browseCommandHandler)
12
);
0 commit comments