美文网首页
vscode 设置 eclipse 快捷键

vscode 设置 eclipse 快捷键

作者: bigCongCong | 来源:发表于2018-05-15 11:25 被阅读0次

【首选项】-->【键盘快捷方式】-->【用于高级自定义打开和编辑 keybindings.json】

[

    { "key": "alt+/",  "command": "editor.action.triggerSuggest","when": "editorTextFocus" },

    { "key": "ctrl+d", "command": "editor.action.cutLines","when": "editorTextFocus" },

    { "key": "ctrl+alt+down","command": "editor.action.copyLinesDownAction", "when": "editorTextFocus" },

    { "key": "ctrl+alt+up", "command": "editor.action.copyLinesUpAction", "when": "editorTextFocus" },

    { "key": "shift+alt+r","command": "editor.action.rename","when": "editorTextFocus" },

    { "key": "ctrl+shift+c","command": "editor.action.commentLine","when": "editorTextFocus" },

    { "key": "ctrl+d","command": "editor.action.deleteLines","when": "editorTextFocus" },

    { "key": "ctrl+k","command": "editor.action.addSelectionToNextFindMatch","when": "editorFocus"},

    { "key": "alt+shift+2","command": "workbench.action.splitEditor"},

    { "key": "ctrl+shift+f","command": "editor.action.format","when": "editorTextFocus"},

]

原文出处:https://hacpai.com/article/1494130046169

相关文章

网友评论

      本文标题:vscode 设置 eclipse 快捷键

      本文链接:https://www.haomeiwen.com/subject/kieedftx.html