zoukankan      html  css  js  c++  java
  • vs code 设置快捷键与eclipse一样

    keybindings.json文件路径在:C:UsersAdministratorAppDataRoamingCodeUserkeybindings.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": "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": "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" }, // 扩展(原ctrl+shift+x快捷键)
    { "key": "ctrl+shift+alt+y","command": "workbench.debug.action.toggleRepl"} // 切换Repl(原ctrl+shift+y快捷键)

  • 相关阅读:
    推荐有关微信开发的十个开源项目
    curl 常见错误码
    mysql修改root密码
    BAT批处理之文件与文件夹操作代码(附xcopy命令详解)
    UE4 Pak包加载
    libcurl 文件上传
    win7右键在目录当前打开命令cmd窗口
    SQLiteDeveloper破解
    Excel替换应用
    解决局域网2级路由互相连接共享的问题
  • 原文地址:https://www.cnblogs.com/zkx4213/p/10748883.html
Copyright © 2011-2022 走看看