Skip to content

Commit

Permalink
make extension host command global (again), fixes #47271
Browse files Browse the repository at this point in the history
  • Loading branch information
jrieken committed Apr 9, 2018
1 parent 950b8b0 commit 0f99fdf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/vs/workbench/api/node/extHostApiCommands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,7 @@ export class ExtHostApiCommands {
// --- command impl

private _register(id: string, handler: (...args: any[]) => any, description?: ICommandHandlerDescription): void {
let disposable = this._commands.registerCommand(false, id, handler, this, description);
let disposable = this._commands.registerCommand(true, id, handler, this, description);
this._disposables.push(disposable);
}

Expand Down

0 comments on commit 0f99fdf

Please sign in to comment.