Ver código fonte

Fixes issue with command execution

main
Eric Amodio 6 anos atrás
pai
commit
1b5afad466
1 arquivos alterados com 3 adições e 0 exclusões
  1. +3
    -0
      src/commands/common.ts

+ 3
- 0
src/commands/common.ts Ver arquivo

@ -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) {

Carregando…
Cancelar
Salvar