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快捷键)

  • 相关阅读:
    JAVA反射机制--静态加载与动态加载
    MyEclipse导入Hibernate出现Path must include project and resource;/project name
    服务器和java程序的桥梁--jdbc/hibernate
    AndroidStudio快捷键大全
    AndroidStudio怎么实现微信分享功能
    《一面》
    java泛型
    java设计模式-Observer(2)
    java设计模式-Observe
    HashSet的自定义实现
  • 原文地址:https://www.cnblogs.com/zkx4213/p/10748883.html
Copyright © 2011-2022 走看看