VSCode Keyboard Shortcuts All In One
Keyboard Shortcuts
- copy line up
Shift + Commad + ⬇
- copy line down
Shift + Commad + ⬆
editorTextFoucus && !editorReadonly
.vscode/keyboard-shortcuts.json
.vscode/settings.json
{
"editor.action.copyLinesDownAction": {
"key": "shift+cmd+down",
"command": "editor.action.copyLinesDownAction",
"when": "editorTextFocus && !editorReadonly"
},
"editor.action.copyLinesUpAction": {
"key": "shift+cmd+up",
"command": "editor.action.copyLinesUpAction",
"when": "editorTextFocus && !editorReadonly"
},
}
refs
©xgqfrms 2012-2020
www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!
原创文章,版权所有©️xgqfrms, 禁止转载
原创文章,作者:dweifng,如若转载,请注明出处:https://blog.ytso.com/tech/pnotes/269711.html