When I copy and paste a piece of code using Visual Studio Code, after pressing enter to create a new line, the following happens:
It seems to k
This plugin may help you:
paste-and-indent extension
You just have to change the shortcut and it works. Remember that you probably want to use 'cmd'
instead of 'ctrl'
if you're on a mac.
Like this:
{
"key": "ctrl+v",
"command": "pasteAndIndent.action",
"when": "editorTextFocus && !editorReadonly"
},
{
"key": "ctrl+v",
"command": "editor.action.clipboardPasteAction",
"when": "!editorTextFocus"
},
{
"key": "ctrl+shift+v",
"command": "editor.action.clipboardPasteAction",
"when": "editorTextFocus && !editorReadonly"
}