Skip to content

Instantly share code, notes, and snippets.

@williamkoller
Last active July 26, 2024 14:49
Show Gist options
  • Save williamkoller/479651090c45d68ab4607d8d4549829c to your computer and use it in GitHub Desktop.
Save williamkoller/479651090c45d68ab4607d8d4549829c to your computer and use it in GitHub Desktop.
key bindings vscode - 26/07/2024
// Place your key bindings in this file to override the defaultsauto[]
[
{
"key": "ctrl+shift+d",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+shift+alt+down",
"command": "-editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+c",
"command": "workbench.action.terminal.copySelection",
"when": "terminalFocus && terminalProcessSupported && terminalTextSelected"
},
{
"key": "ctrl+shift+c",
"command": "-workbench.action.terminal.copySelection",
"when": "terminalFocus && terminalProcessSupported && terminalTextSelected"
},
{
"key": "ctrl+v",
"command": "workbench.action.terminal.paste",
"when": "terminalFocus && terminalProcessSupported"
},
{
"key": "ctrl+shift+v",
"command": "-workbench.action.terminal.paste",
"when": "terminalFocus && terminalProcessSupported"
}
]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment