Browse Source

Fixes issue with command execution

main
Eric Amodio 6 years ago
parent
commit
1b5afad466
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      src/commands/common.ts

+ 3
- 0
src/commands/common.ts View File

@ -381,6 +381,9 @@ export abstract class Command implements Disposable {
if (uri !== undefined) {
return [{ command: command, type: 'uri', editor: editor, uri: uri }, rest];
}
else {
args = args.slice(1);
}
}
if (firstArg instanceof ViewNode) {

Loading…
Cancel
Save