Skip to content

Commit

Permalink
Fix review comments and remove menu
Browse files Browse the repository at this point in the history
  • Loading branch information
Vlad Arama committed Jul 12, 2023
1 parent 0149146 commit 67840a9
Showing 1 changed file with 3 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ export namespace SearchInWorkspaceCommands {
label: 'Find in Folder...'
});
export const FOCUS_NEXT_RESULT = Command.toDefaultLocalizedCommand({
id: 'search-in-workspace.next-result',
id: 'search-in-workspace.focusNextSearchResult',
category: SEARCH_CATEGORY,
label: 'Focus Next Search Result'
});
export const FOCUS_PREV_RESULT = Command.toDefaultLocalizedCommand({
id: 'search-in-workspace.prev-result',
id: 'search-in-workspace.focusPreviousSearchResult',
category: SEARCH_CATEGORY,
label: 'Focus Previous Search Result'
});
Expand Down Expand Up @@ -407,17 +407,9 @@ export class SearchInWorkspaceFrontendContribution extends AbstractViewContribut
commandId: SearchInWorkspaceCommands.OPEN_SIW_WIDGET.id,
order: '2'
});
menus.registerMenuAction(CommonMenus.EDIT_FIND, {
commandId: SearchInWorkspaceCommands.FOCUS_NEXT_RESULT.id,
order: '3'
});
menus.registerMenuAction(CommonMenus.EDIT_FIND, {
commandId: SearchInWorkspaceCommands.FOCUS_PREV_RESULT.id,
order: '4'
});
menus.registerMenuAction(CommonMenus.EDIT_FIND, {
commandId: SearchInWorkspaceCommands.REPLACE_IN_FILES.id,
order: '5'
order: '3'
});
menus.registerMenuAction(SearchInWorkspaceResultTreeWidget.Menus.INTERNAL, {
commandId: SearchInWorkspaceCommands.REPLACE_RESULT.id,
Expand Down

0 comments on commit 67840a9

Please sign in to comment.