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/
  • 相关阅读:
    IIS iframe嵌套的别人的页面 突然就打不开了
    C#基础知识之可空类型
    EditorConfig插件和ESLint
    ES6-ES11新语法之ES10
    ES6-ES11新语法之ES9
    pipenv快速入门
    Pycharm拉取git仓库代码
    【pytest学习10】pytest报告,html,allure
    jira&confluence之什么是epic/feature/story/task
    【pytest学习9】usefixture的简单使用
  • 原文地址:https://www.cnblogs.com/guoapeng/p/11298809.html
Copyright © 2011-2022 走看看