Skip to content

Commit 7ab8fa9

Browse files
committed
Remove hello message on load
1 parent 4ab50c5 commit 7ab8fa9

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

src/index.ts

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,10 @@
11
import { defineExtension } from "reactive-vscode";
2-
import { window, commands } from "vscode";
2+
import { commands } from "vscode";
33

44
import { browseCommand, browseCommandHandler } from "./commands/browse";
55
import { searchCommand, searchCommandHandler } from "./commands/search";
66

77
const { activate, deactivate } = defineExtension((context) => {
8-
window.showInformationMessage("Hello");
9-
108
context.subscriptions.push(
119
commands.registerCommand(browseCommand, browseCommandHandler)
1210
);

0 commit comments

Comments
 (0)