Skip to content

Commit

Permalink
Add 'replace in files' command final
Browse files Browse the repository at this point in the history
  • Loading branch information
smart-bo committed Oct 22, 2021
1 parent c473b6b commit e87ae2e
Showing 1 changed file with 4 additions and 22 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -40,18 +40,13 @@ export namespace SearchInWorkspaceCommands {
id: 'search-in-workspace.open',
category: SEARCH_CATEGORY,
label: 'Find in Files'
<<<<<<< HEAD
}, 'vscode/search.contribution/findInFiles', SEARCH_CATEGORY_KEY);
export const FIND_IN_FOLDER = Command.toLocalizedCommand({
=======
};
export const REPLACE_IN_FILES: Command = {
export const REPLACE_IN_FILES = Command.toLocalizedCommand({
id: 'search-in-workspace.replace',
category: SEARCH_CATEGORY,
label: 'Replace in Files'
};
export const FIND_IN_FOLDER: Command = {
>>>>>>> beac550c251 (Add 'replace in files' command)
}, 'vscode/searchActions/replaceInFiles', SEARCH_CATEGORY_KEY);
export const FIND_IN_FOLDER = Command.toLocalizedCommand({
id: 'search-in-workspace.in-folder',
category: SEARCH_CATEGORY,
label: 'Find in Folder'
Expand Down Expand Up @@ -135,14 +130,6 @@ export class SearchInWorkspaceFrontendContribution extends AbstractViewContribut
}
});

commands.registerCommand(SearchInWorkspaceCommands.REPLACE_IN_FILES, {
isEnabled: () => this.workspaceService.tryGetRoots().length > 0,
execute: async () => {
const widget = await this.openView({ activate: true });
widget.updateSearchTerm(this.getSearchTerm(), true);
}
});

commands.registerCommand(SearchInWorkspaceCommands.FIND_IN_FOLDER, this.newMultiUriAwareCommandHandler({
execute: async uris => {
const resources: string[] = [];
Expand Down Expand Up @@ -232,12 +219,7 @@ export class SearchInWorkspaceFrontendContribution extends AbstractViewContribut
commandId: SearchInWorkspaceCommands.FIND_IN_FOLDER.id
});
menus.registerMenuAction(CommonMenus.EDIT_FIND, {
commandId: SearchInWorkspaceCommands.OPEN_SIW_WIDGET.id,
order: '2'
});
menus.registerMenuAction(CommonMenus.EDIT_FIND, {
commandId: SearchInWorkspaceCommands.REPLACE_IN_FILES.id,
order: '3'
commandId: SearchInWorkspaceCommands.OPEN_SIW_WIDGET.id
});
}

Expand Down

0 comments on commit e87ae2e

Please sign in to comment.