Parcourir la source

Fixes retry action for Git commands

main
Eric Amodio il y a 3 ans
Parent
révision
e6c7334b06
2 fichiers modifiés avec 7 ajouts et 2 suppressions
  1. +6
    -0
      src/commands/quickCommand.buttons.ts
  2. +1
    -2
      src/commands/quickCommand.ts

+ 6
- 0
src/commands/quickCommand.buttons.ts Voir le fichier

@ -37,6 +37,12 @@ export class ToggleQuickInputButton implements QuickInputButton {
this._on = value;
}
/**
*
* @param quickInput
* @returns `true` if the step should be retried (refreshed)
*
*/
onDidClick?(quickInput: QuickInput): boolean | void | Promise<boolean | void>;
private getState() {

+ 1
- 2
src/commands/quickCommand.ts Voir le fichier

@ -190,8 +190,7 @@ export abstract class QuickCommand implements QuickPickItem {
}
async retry(): Promise<QuickPickStep | QuickInputStep | undefined> {
await this.next(Directive.Back);
await this.next();
await this.next(Directive.Noop);
return this.value;
}

Chargement…
Annuler
Enregistrer