소스 검색

Avoids opening the walkthrough to the side

main
Eric Amodio 1 년 전
부모
커밋
00b4d11bdf
1개의 변경된 파일1개의 추가작업 그리고 13개의 파일을 삭제
  1. +1
    -13
      src/commands/walkthroughs.ts

+ 1
- 13
src/commands/walkthroughs.ts 파일 보기

@ -17,18 +17,6 @@ export class GetStartedCommand extends Command {
walkthroughId = undefined;
}
void openWalkthrough(extensionId, walkthroughId ?? 'gitlens.welcome');
}
}
@command()
export class OpenWalkthroughCommand extends Command {
constructor(private readonly container: Container) {
super(Commands.OpenWalkthrough);
}
execute(walkthroughAndStep?: string) {
const [walkthroughId, stepId] = walkthroughAndStep?.split('|') ?? 'gitlens.welcome';
void openWalkthrough(this.container.context.extension.id, walkthroughId, stepId);
void openWalkthrough(extensionId, walkthroughId ?? 'gitlens.welcome', undefined, false);
}
}

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