ARTICLE DETAIL

资讯详情

深耕网站建设、视觉设计与SEO优化的一线实战洞察。

手把手将 VSCode 快捷键修改为 Eclipse 的快捷键

手把手将 VSCode 快捷键修改为 Eclipse 的快捷键

1.在 vscode 上方搜索栏输入 >keyboard

2. 选择图中红框的内容

3.将Eclipse的常用快捷键复制进去

{

    "key": "ctrl+d",

    "command": "-editor.action.addSelectionToNextFindMatch",

    "when": "editorFocus"

},

{

    "key": "ctrl+d",

    "command": "editor.action.deleteLines",

    "when": "textInputFocus && !editorReadonly"

},

{

    "key": "ctrl+shift+k",

    "command": "-editor.action.deleteLines",

    "when": "textInputFocus && !editorReadonly"

},

{

    "key": "ctrl+alt+up",

    "command": "editor.action.copyLinesUpAction",

    "when": "editorTextFocus && !editorReadonly"

},

{

    "key": "shift+alt+up",

    "command": "-editor.action.copyLinesUpAction",

    "when": "editorTextFocus && !editorReadonly"

},

{

    "key": "ctrl+alt+down",

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

    "when": "editorTextFocus && !editorReadonly"

},

{

    "key": "shift+alt+down",

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

    "when": "editorTextFocus && !editorReadonly"

},

返回列表