feat(code-server): add bookmarks extension and custom keybinds (#46)

Reviewed-on: https://codeberg.org/vlw/dotfiles/pulls/46
This commit is contained in:
Victor Westerlund 2025-09-20 15:32:11 +02:00
parent b43ef009d6
commit 50b98443c7
2 changed files with 35 additions and 0 deletions

View file

@ -1,4 +1,5 @@
[
"alefragnani.bookmarks",
"demartini.vscode-idiomatic-css-comments-snippets",
"hangxingliu.vscode-nginx-conf-hint",
"ms-python.debugpy",

View file

@ -27,5 +27,39 @@
{
"key": "ctrl+shift+h",
"command": "-workbench.action.replaceInFiles"
},
{
"key": "shift+alt+oem_5",
"command": "bookmarks.toggle",
"when": "editorTextFocus"
},
{
"key": "ctrl+alt+k",
"command": "-bookmarks.toggle",
"when": "editorTextFocus"
},
{
"key": "shift+alt+1",
"command": "bookmarks.jumpToNext",
"when": "editorTextFocus"
},
{
"key": "ctrl+alt+l",
"command": "-bookmarks.jumpToNext",
"when": "editorTextFocus"
},
{
"key": "shift+alt+2",
"command": "bookmarks.jumpToPrevious",
"when": "editorTextFocus"
},
{
"key": "ctrl+alt+j",
"command": "-bookmarks.jumpToPrevious",
"when": "editorTextFocus"
},
{
"key": "shift+alt+3",
"command": "bookmarks.clear"
}
]