mirror of
https://codeberg.org/vlw/dotfiles.git
synced 2025-11-05 09:22:42 +01:00
feat(code-server): add bookmarks extension and custom keybinds
This commit is contained in:
parent
b43ef009d6
commit
aae19536cd
2 changed files with 35 additions and 0 deletions
|
|
@ -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",
|
||||||
|
|
|
||||||
|
|
@ -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"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
Loading…
Add table
Reference in a new issue