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

This commit is contained in:
Victor Westerlund 2025-09-20 15:15:41 +02:00
parent b43ef009d6
commit aae19536cd
Signed by: vlw
GPG key ID: D0AD730E1057DFC6
2 changed files with 35 additions and 0 deletions

View file

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

View file

@ -27,5 +27,39 @@
{ {
"key": "ctrl+shift+h", "key": "ctrl+shift+h",
"command": "-workbench.action.replaceInFiles" "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"
} }
] ]