码迷,mamicode.com
首页 > 系统相关 > 详细

Visual Studio Code自定义快捷键(eclipse习惯)

时间:2019-04-28 18:55:03      阅读:564      评论:0      收藏:0      [点我收藏+]

标签:trigger   href   form   clip   debug   快捷键   work   自定义   lin   

左下角设置按钮 -> Keyboard Shortcuts -> keybindings.json。

[
    { "key": "alt+/",  "command": "editor.action.triggerSuggest","when": "editorTextFocus" },
    { "key": "ctrl+alt+down","command": "editor.action.copyLinesDownAction", "when": "editorTextFocus" },
    { "key": "ctrl+alt+up", "command": "editor.action.copyLinesUpAction", "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": "ctrl+shift+f","command": "editor.action.format","when": "editorTextFocus"},
    { "key": "ctrl+shift+x","command": "editor.action.transformToUppercase","when": "editorTextFocus"},
    { "key": "ctrl+shift+y","command": "editor.action.transformToLowercase","when": "editorTextFocus"},
    { "key": "ctrl+shift+alt+x","command": "workbench.view.extensions" },
    { "key": "ctrl+shift+alt+y","command": "workbench.debug.action.toggleRepl"},
]

参考地址:https://blog.csdn.net/zoujiawei6/article/details/85682649

Visual Studio Code自定义快捷键(eclipse习惯)

标签:trigger   href   form   clip   debug   快捷键   work   自定义   lin   

原文地址:https://www.cnblogs.com/pengyan5945/p/10785659.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!