// 将键绑定放入此文件中以覆盖默认值[ { "key": "ctrl+alt+down", "command": "editor.action.copyLinesDownAction", "when": "editorTextFocus && !editorReadonly" }, { "key": "ctrl+alt+up", "command": "editor.action.copyLinesUpAction", "when": "editorTextFocus && !editorReadonly"
}, { "key": "ctrl+d", "command": "editor.action.deleteLines", "when": "editorTextFocus && !editorReadonly" }, { "key": "shift+alt+up", "command": "editor.action.insertCursorAbove", "when": "editorTextFocus" }, { "key": "shift+enter", "command": "editor.action.insertLineAfter",
"when": "editorTextFocus && !editorReadonly" }, { "key": "shift+alt+down", "command": "editor.action.insertCursorBelow", "when": "editorTextFocus" }, { "key": "shift+alt+up", "command": "editor.action.insertCursorAbove", "when": "editorTextFocus" }]
vscode 实现eclipse风格的快捷键
最新推荐文章于 2025-05-08 13:01:05 发布
本文介绍了一种自定义 VSCode 编辑器快捷键的方法,通过设置特定的快捷键组合来实现快速复制、删除及插入光标等编辑操作,提高编程效率。
3496

被折叠的 条评论
为什么被折叠?



