fix(code-server): change keybind for search tab to search and replace (#45)

Reviewed-on: https://codeberg.org/vlw/dotfiles/pulls/45
This commit is contained in:
Victor Westerlund 2025-09-17 17:56:45 +02:00
parent 8153e07325
commit b43ef009d6

View file

@ -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"
}
]