Skip to content

Commit 1d9871b

Browse files
committed
Refines launchpad open in worktree action
1 parent 7d61a7e commit 1d9871b

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/commands/quickCommand.buttons.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ export const ShowResultsInSideBarQuickInputButton: QuickInputButton = {
198198

199199
export const OpenWorktreeInNewWindowQuickInputButton: QuickInputButton = {
200200
iconPath: new ThemeIcon('empty-window'),
201-
tooltip: 'Open Worktree in New Window',
201+
tooltip: 'Open in Worktree',
202202
};
203203

204204
export const ShowTagsToggleQuickInputButton = class extends SelectableQuickInputButton {

src/plus/focus/focus.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -638,7 +638,7 @@ export class FocusCommand extends QuickCommand<State> {
638638
confirmations.push(
639639
createQuickPickItemOfT(
640640
{
641-
label: 'Open Worktree in New Window',
641+
label: 'Open in Worktree',
642642
detail: 'Will create or open a worktree in a new window',
643643
},
644644
action,

src/plus/focus/focusProvider.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ export function getSuggestedActions(category: FocusActionCategory, isCurrentBran
165165
if (isCurrentBranch) {
166166
actions.push('show-overview', 'open-changes', 'code-suggest', 'open-in-graph');
167167
} else {
168-
actions.push('switch', 'open-worktree', 'switch-and-code-suggest', 'open-in-graph');
168+
actions.push('open-worktree', 'switch', 'switch-and-code-suggest', 'open-in-graph');
169169
}
170170
return actions;
171171
}

0 commit comments

Comments
 (0)