Skip to content

Commit

Permalink
remove redundant document uri check
Browse files Browse the repository at this point in the history
  • Loading branch information
rebornix committed Sep 13, 2016
1 parent 86c7eb3 commit 23c5596
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -163,11 +163,6 @@ export async function activate(context: vscode.ExtensionContext) {
});

registerCommand(context, 'compositionStart', async (args) => {
if (vscode.window.activeTextEditor.document && vscode.window.activeTextEditor.document.uri.toString() === "debug:input") {
await vscode.commands.executeCommand("default:compositionStart", args);
return;
}

taskQueue.enqueueTask({
promise: async () => {
const mh = await getAndUpdateModeHandler();
Expand Down

0 comments on commit 23c5596

Please sign in to comment.