Procházet zdrojové kódy

Fixes issue with command execution

main
Eric Amodio před 6 roky
rodič
revize
1b5afad466
1 změnil soubory, kde provedl 3 přidání a 0 odebrání
  1. +3
    -0
      src/commands/common.ts

+ 3
- 0
src/commands/common.ts Zobrazit soubor

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

Načítá se…
Zrušit
Uložit