Skip to content

Instantly share code, notes, and snippets.

@karstengresch
Created March 13, 2023 00:04
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save karstengresch/09e8642f65a0bf166fae46b0dda4ed6b to your computer and use it in GitHub Desktop.
Save karstengresch/09e8642f65a0bf166fae46b0dda4ed6b to your computer and use it in GitHub Desktop.
My keybindings.json as of 2023-03-13
/* KG's KBS */
[
{
"key": "shift shift",
"command": "workbench.action.showCommands"
},
{
"key": "shift+cmd+t",
"command": "workbench.action.terminal.focus"
},
{
"key": "shift+cmd+g",
"command": "workbench.view.scm",
"when": "workbench.scm.active"
},
{
"key": "ctrl+shift+g",
"command": "-workbench.view.scm",
"when": "workbench.scm.active && !gitlens:disabled && config.gitlens.keymap == 'chorded'"
},
{
"key": "shift+cmd+n",
"command": "dendron.treeView.focus"
},
{
"key": "ctrl+shift+alt+cmd+right",
"command": "dendron.treeView.expandAll"
},
{
"key": "ctrl+cmd+l",
"command": "dendron.insertNoteLink"
},
{
"key": "ctrl+alt+cmd+r",
"command": "workbench.action.reloadWindow",
"when": "isDevelopment"
},
{
"key": "cmd+r",
"command": "-workbench.action.reloadWindow",
"when": "isDevelopment"
},
{
"key": "ctrl+shift+t",
"command": "dendron.createTask"
},
{
"key": "shift+cmd+j",
"command": "-dendron.createJournalNote",
"when": "dendron:pluginActive && shellExecutionSupported"
},
{
"key": "cmd+d cmd+n",
"command": "dendron.createNote"
},
{
// ???
"key": "ctrl+shift+cmd+up",
"command": "workbench.action.increaseViewSize"
},
{
"key": "ctrl+shift+cmd+down",
"command": "workbench.action.decreaseViewSize"
},
{
"key": "shift+cmd+k left",
"command": "workbench.action.newGroupLeft"
},
{
"key": "shift+cmd+k right",
"command": "workbench.action.newGroupRight"
},
{
"key": "shift+cmd+k up",
"command": "workbench.action.newGroupAbove"
},
{
"key": "shift+cmd+k down",
"command": "workbench.action.newGroupBelow"
},
{
"key": "ctrl+cmd+-",
"command": "editor.action.deleteLines",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "shift+cmd+k",
"command": "-editor.action.deleteLines",
"when": "textInputFocus && !editorReadonly"
},
{
"key": "ctrl+alt+cmd+d",
"command": "deleteInsideWord"
},
{
"key": "cmd+d m",
"command": "dendron.moveNote"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment