vscode更改快捷键-- 例子向下复制一行

版权声明:本文为博主原创文章,未经博主允许不得转载。 https://blog.csdn.net/zhangshab/article/details/83410041

向下复制一条的快捷键:

[

{

"key": "ctrl+d",

"command": "editor.action.copyLinesDownAction",

"when": "editorTextFocus"

},

{

"key": "ctrl+shift+up",

"command": "editor.action.moveLinesUpAction",

"when": "editorTextFocus"

},

{

"key": "ctrl+shift+down",

"command": "editor.action.moveLinesDownAction",

"when": "editorTextFocus"

}

]

file-prefrences- keybord shutcus.

简答得用这种

https://jingyan.baidu.com/article/9faa7231ef1383473c28cb12.html

猜你喜欢

转载自blog.csdn.net/zhangshab/article/details/83410041