mirror of
https://codeberg.org/vlw/dotfiles.git
synced 2025-11-05 01:12:42 +01:00
feat(code-server): add bookmarks extension and custom keybinds (#46)
Reviewed-on: https://codeberg.org/vlw/dotfiles/pulls/46
This commit is contained in:
parent
b43ef009d6
commit
50b98443c7
2 changed files with 35 additions and 0 deletions
|
|
@ -1,4 +1,5 @@
|
|||
[
|
||||
"alefragnani.bookmarks",
|
||||
"demartini.vscode-idiomatic-css-comments-snippets",
|
||||
"hangxingliu.vscode-nginx-conf-hint",
|
||||
"ms-python.debugpy",
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
}
|
||||
]
|
||||
Loading…
Add table
Reference in a new issue