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

  • 相关阅读:
    字符串匹配算法之Rabin-Karp算法
    算法导论之最近顶点对
    php连mssql中文乱码问题
    Trie树
    PAT 1057. Stack (30)
    PAT 1033. To Fill or Not to Fill (25)
    PAT 1034. Head of a Gang (30)
    PAT 1075. PAT Judge (25)
    spring框架资料
    Spring Security资料
  • 原文地址:https://www.cnblogs.com/zkx4213/p/10748883.html
Copyright © 2020-2023  润新知