소스 검색

Fixes search back & execute from show commit cmd

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

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

@ -130,7 +130,7 @@ export class SearchGitCommand extends QuickCommand {
}
}
if (state.counter < 3 || state.pattern == null) {
if (state.counter < 2 || state.pattern == null) {
const result = yield* this.pickSearchOperatorStep(state as SearchStepState, context);
if (result === StepResult.Break) {
// If we skipped the previous step, make sure we back up past it
@ -172,7 +172,7 @@ export class SearchGitCommand extends QuickCommand {
break;
}
if (state.counter < 4 || context.commit == null) {
if (state.counter < 3 || context.commit == null) {
const repoPath = state.repo.path;
const result = yield* pickCommitStep(state as SearchStepState, context, {
ignoreFocusOut: true,
@ -203,7 +203,10 @@ export class SearchGitCommand extends QuickCommand {
),
},
});
if (result === StepResult.Break) continue;
if (result === StepResult.Break) {
state.counter--;
continue;
}
context.commit = result;
}

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