Last active
July 26, 2024 14:49
-
-
Save williamkoller/479651090c45d68ab4607d8d4549829c to your computer and use it in GitHub Desktop.
key bindings vscode - 26/07/2024
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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