Browse Source

Filters main worktree from delete

main
Eric Amodio 2 years ago
parent
commit
c3049d5adb
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/commands/git/worktree.ts

+ 1
- 1
src/commands/git/worktree.ts View File

@ -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',

Loading…
Cancel
Save