Skip to content

Commit

Permalink
feat. update menu text
Browse files Browse the repository at this point in the history
  • Loading branch information
pagict committed Apr 4, 2024
1 parent 10dc3e8 commit 6b01d41
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/vs/workbench/contrib/search/browser/searchActionsFind.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@ registerAction2(class ExpandSelectedTreeCommandAction extends Action2 {
constructor(
) {
super({
id: Constants.SearchCommandIds.ExpandSelectedTreeCommandId,
title: nls.localize('search.expandAll', "Expand All"),
id: Constants.SearchCommandIds.ExpandRecursivelyCommandId,
title: nls.localize('search.expandRecursively', "Expand Recursively"),
category,
menu: [{
id: MenuId.SearchContext,
Expand Down
2 changes: 1 addition & 1 deletion src/vs/workbench/contrib/search/common/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ export const enum SearchCommandIds {
ToggleSearchOnTypeActionId = 'workbench.action.toggleSearchOnType',
CollapseSearchResultsActionId = 'search.action.collapseSearchResults',
ExpandSearchResultsActionId = 'search.action.expandSearchResults',
ExpandSelectedTreeCommandId = 'search.action.expandSelected',
ExpandRecursivelyCommandId = 'search.action.expandRecursively',
ClearSearchResultsActionId = 'search.action.clearSearchResults',
ViewAsTreeActionId = 'search.action.viewAsTree',
ViewAsListActionId = 'search.action.viewAsList',
Expand Down

0 comments on commit 6b01d41

Please sign in to comment.