zoukankan      html  css  js  c++  java
  • vscode 配置

    插件:

    Go:Rich Go language support  

    Preview on Web Server

    IntelliJ IDEA Key Bindings for Visual Studio Code

    settings.json  位置C:UsersAdministratorAppDataRoamingCodeUsersettings.json     或者快捷键Ctr+shift+p  搜索 settings -> open settings (Json)

    {
        "editor.minimap.enabled": false,
        "breadcrumbs.enabled": true,
        "vscode-mysql.enableTelemetry": false,
        "editor.renderControlCharacters": true,
        "editor.renderWhitespace": "none",
    "extensions.autoCheckUpdates": false,
    "update.mode": "none",
    "terminal.integrated.shell.windows": "C:\Windows\System32\cmd.exe",
    "terminal.integrated.shellArgs.windows": ["/k", "C:\dev\Cygwin\Cygwin.bat"]
          "workbench.colorTheme": "Solarized Dark"
    }

    keybindings.json 位置C:UsersAdministratorAppDataRoamingCodeUserkeybindings.json, 或者通过快捷键访问到配置文件位置 快捷键:Alt+F --> p --> k,  File->Preferences->keyboard shotcuts -> click on {}

    // Place your key bindings in this file to override the defaults
    [
        {
            "key": "ctrl+tab",
            "command": "workbench.action.terminal.focusNext", // 切换到下一个终端 
            "when": "terminalFocus"
        },
        {
            "key": "ctrl+t",
            "command": "workbench.action.terminal.new", // 打开新的终端
            "when": "terminalFocus"
        },
        {
            "key": "ctrl+1",
            "command": "workbench.action.terminal.focusAtIndex1", // 打开终端1
            "when": "terminalFocus"
        },
        {
            "key": "ctrl+2",
            "command": "workbench.action.terminal.focusAtIndex2",
            "when": "terminalFocus"
        },
        {
            "key": "ctrl+3",
            "command": "workbench.action.terminal.focusAtIndex3",
            "when": "terminalFocus"
        },
        {
            "key": "ctrl+4",
            "command": "workbench.action.terminal.focusAtIndex4",
            "when": "terminalFocus"
        },
        {
            "key": "ctrl+5",
            "command": "workbench.action.terminal.focusAtIndex5",
            "when": "terminalFocus"
        },
        {
            "key": "ctrl+6",
            "command": "workbench.action.terminal.focusAtIndex6",
            "when": "terminalFocus"
        },
        {
            "key": "ctrl+7",
            "command": "workbench.action.terminal.focusAtIndex7",
            "when": "terminalFocus"
        },
        {
            "key": "ctrl+alt+m",
            "command": "workbench.action.toggleMaximizedPanel"
        },
        {
            "key": "ctrl+f5",
            "command": "workbench.action.reloadWindow", // 刷新settings.json
            "when": "editorTextFocus"
        },
        {
            "key": "alt+down",
            "command": "cursorColumnSelectDown",
            "when": "textInputFocus"
        },
        {
            "key": "alt+left",
            "command": "cursorColumnSelectLeft",
            "when": "textInputFocus"
        },
        {
            "key": "ctrl+shift+alt+pagedown",
            "command": "cursorColumnSelectPageDown",
            "when": "textInputFocus"
        },
        {
            "key": "ctrl+shift+alt+pageup",
            "command": "cursorColumnSelectPageUp",
            "when": "textInputFocus"
        },
        {
            "key": "alt+right",
            "command": "cursorColumnSelectRight",
            "when": "textInputFocus"
        },
        {
            "key": "ctrl+shift+alt+up",
            "command": "cursorColumnSelectUp",
            "when": "textInputFocus"
        }
    ]

     

    转载请注明出处, 更多博文请访问https://www.cnblogs.com/guoapeng/
  • 相关阅读:
    PCL配置即常见问题
    opencv2.4.9配置+VS2013
    我的项目配置问题及解决
    Java 8 函数式编程
    leecode刷题(17)-- 实现StrStr
    leecode刷题(16)-- 字符串转换整数
    leecode刷题(15)-- 验证回文字符串
    博客迁移通知
    leecode刷题(14)-- 有效的字母异位词
    leecode刷题(13) -- 字符串中的第一个唯一字符
  • 原文地址:https://www.cnblogs.com/guoapeng/p/11298809.html
Copyright © 2011-2022 走看看