소스 검색

Fixes back button on search command

main
Eric Amodio 4 년 전
부모
커밋
e8f11d9889
1개의 변경된 파일6개의 추가작업 그리고 1개의 파일을 삭제
  1. +6
    -1
      src/commands/git/search.ts

+ 6
- 1
src/commands/git/search.ts 파일 보기

@ -140,6 +140,7 @@ export class SearchGitCommand extends QuickCommand {
// If we skipped the previous step, make sure we back up past it
if (skippedStepOne) {
skippedStepOne = false;
state.counter--;
}
state.pattern = undefined;
@ -341,7 +342,11 @@ export class SearchGitCommand extends QuickCommand {
},
});
const selection: StepSelection<typeof step> = yield step;
if (!QuickCommand.canPickStepContinue(step, state, selection)) return StepResult.Break;
if (!QuickCommand.canPickStepContinue(step, state, selection)) {
// Since we simulated a step above, we need to remove it here
state.counter--;
return StepResult.Break;
}
// Since we simulated a step above, we need to remove it here
state.counter--;

불러오는 중...
취소
저장