From b43ef009d61e25e9e8a619082776685dccc63f8e Mon Sep 17 00:00:00 2001 From: Victor Westerlund Date: Wed, 17 Sep 2025 17:56:45 +0200 Subject: [PATCH] fix(code-server): change keybind for search tab to search and replace (#45) Reviewed-on: https://codeberg.org/vlw/dotfiles/pulls/45 --- .local/share/code-server/User/keybindings.json | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.local/share/code-server/User/keybindings.json b/.local/share/code-server/User/keybindings.json index 9713576..3349c9c 100644 --- a/.local/share/code-server/User/keybindings.json +++ b/.local/share/code-server/User/keybindings.json @@ -10,14 +10,6 @@ "command": "-workbench.view.explorer", "when": "viewContainer.workbench.view.explorer.enabled" }, - { - "key": "alt+1", - "command": "workbench.action.findInFiles" - }, - { - "key": "ctrl+shift+f", - "command": "-workbench.action.findInFiles" - }, { "key": "alt+2", "command": "workbench.view.debug", @@ -27,5 +19,13 @@ "key": "ctrl+shift+d", "command": "-workbench.view.debug", "when": "viewContainer.workbench.view.debug.enabled" + }, + { + "key": "alt+1", + "command": "workbench.action.replaceInFiles" + }, + { + "key": "ctrl+shift+h", + "command": "-workbench.action.replaceInFiles" } ] \ No newline at end of file