欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

Eclipse深度患者设置VSCode快捷键

程序员文章站 2024-03-24 18:46:22
...

VSCode设置Eclipse中常用的快捷键

Eclipse深度患者设置VSCode快捷键

将eclipse中一些基本的快捷键输入右侧用户快捷键设置中:

// Place your key bindings in this file to overwrite the defaults
[
    { "key": "alt+/",  "command": "editor.action.triggerSuggest","when": "editorTextFocus" },
    { "key": "ctrl+d", "command": "editor.action.deleteLines","when": "editorTextFocus" },
    { "key": "ctrl+alt+down","command": "editor.action.copyLinesDownAction", "when": "editorTextFocus" },
    { "key": "ctrl+alt+up", "command": "editor.action.copyLinesUpAction", "when": "editorTextFocus" },
    { "key": "shift+enter", "command": "editor.action.insertLineAfter", "when": "editorTextFocus && !editorReadonly" }
]

Eclipse深度患者设置VSCode快捷键

保存关闭即可。


相关标签: VSCode 快捷键