其他分享
首页 > 其他分享> > VSCode Keyboard Shortcuts All In One

VSCode Keyboard Shortcuts All In One

作者:互联网

VSCode Keyboard Shortcuts All In One

Keyboard Shortcuts

  1. copy line up

Shift + Commad + ⬇

  1. 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


Flag Counter

©xgqfrms 2012-2020

www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!

原创文章,版权所有©️xgqfrms, 禁止转载

标签:VSCode,xgqfrms,Shortcuts,editor,&&,Keyboard,action,editorReadonly
来源: https://www.cnblogs.com/xgqfrms/p/16403818.html