Преглед изворни кода

Filters main worktree from delete

main
Eric Amodio пре 3 година
родитељ
комит
c3049d5adb
1 измењених фајлова са 1 додато и 1 уклоњено
  1. +1
    -1
      src/commands/git/worktree.ts

+ 1
- 1
src/commands/git/worktree.ts Прегледај датотеку

@ -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…
Откажи
Сачувај