Skip to content

Commit 48a53cb

Browse files
committed
Removing registration of command
1 parent f7d59a5 commit 48a53cb

File tree

2 files changed

+3
-12
lines changed

2 files changed

+3
-12
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "resx-editor",
33
"displayName": "ResX Viewer and Editor",
4-
"description": "Viewer for .NET RESX/RESW resource files",
4+
"description": "Viewer for resx/resw resource files",
55
"author": "Tim Heuer",
66
"publisher": "timheuer",
77
"icon": "icon.png",

src/extension.ts

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,18 +3,9 @@ import { ResxProvider } from './resxProvider';
33

44

55
export function activate(context: vscode.ExtensionContext) {
6-
7-
// The command has been defined in the package.json file
8-
// Now provide the implementation of the command with registerCommand
9-
// The commandId parameter must match the command field in package.json
10-
let disposable = vscode.commands.registerCommand('resx-viewer.helloWorld', () => {
11-
// The code you place here will be executed every time your command is executed
12-
// Display a message box to the user
13-
//HelloWorldPanel.render(context.extensionUri);
14-
});
15-
6+
167
context.subscriptions.push(ResxProvider.register(context));
17-
context.subscriptions.push(disposable);
8+
189
}
1910

2011
export function deactivate() {}

0 commit comments

Comments
 (0)