Bladeren bron

Avoids opening the walkthrough to the side

main
Eric Amodio 1 jaar geleden
bovenliggende
commit
00b4d11bdf
1 gewijzigde bestanden met toevoegingen van 1 en 13 verwijderingen
  1. +1
    -13
      src/commands/walkthroughs.ts

+ 1
- 13
src/commands/walkthroughs.ts Bestand weergeven

@ -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);
}
}

Laden…
Annuleren
Opslaan