Ver a proveniência

Filters main worktree from delete

main
Eric Amodio há 2 anos
ascendente
cometimento
c3049d5adb
1 ficheiros alterados com 1 adições e 1 eliminações
  1. +1
    -1
      src/commands/git/worktree.ts

+ 1
- 1
src/commands/git/worktree.ts Ver ficheiro

@ -545,7 +545,7 @@ export class WorktreeGitCommand extends QuickCommand {
context.title = getTitle('Worktrees', state.subcommand);
const result = yield* pickWorktreesStep(state, context, {
filter: wt => !wt.opened, // Can't delete an open worktree
filter: wt => wt.main || !wt.opened, // Can't delete the main or opened worktree
includeStatus: true,
picked: state.uris?.map(uri => uri.toString()),
placeholder: 'Choose worktrees to delete',

Carregando…
Cancelar
Guardar