插件:
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" } ]