F1
或 Ctrl+Shift+P
: 打開命令面板。在打開的輸入框內,能夠輸入任何命令,例如:javascript
Backspace
會進入到 Ctrl+P
模式Ctrl+P
下輸入 >
能夠進入 Ctrl+Shift+P
模式在 Ctrl+P
窗口下還能夠:前端
?
列出當前可執行的動做!
顯示 Errors
或 Warnings
,也能夠 Ctrl+Shift+M
:
跳轉到行數,也能夠 Ctrl+G
直接進入@
跳轉到 symbol
(搜索變量或者函數),也能夠 Ctrl+Shift+O
直接進入@
根據分類跳轉 symbol
,查找屬性或函數,也能夠 Ctrl+Shift+O
後輸入:進入#
根據名字查找 symbol
,也能夠 Ctrl+T
Ctrl+Shift+N
Ctrl+Shift+W
Ctrl+N
Ctrl+Tab
3
個) Ctrl+\
,也能夠按住 Ctrl
鼠標點擊 Explorer
裏的文件名3
個編輯器的快捷鍵 Ctrl+1
Ctrl+2
Ctrl+3
3
個編輯器之間循環切換 Ctrl+
Ctrl+k
而後按 Left
或 Right
Ctrl+[
、 Ctrl+]
Ctrl+C
、 Ctrl+V
複製或剪切當前行/當前選中內容Shift+Alt+F
,或 Ctrl+Shift+P
後輸入 format code
Alt+Up
或 Alt+Down
Shift+Alt+Up
或 Shift+Alt+Down
Ctrl+Enter
Ctrl+Shift+Enter
Home
End
Ctrl+End
Ctrl+Home
F12
Alt+F12
Ctrl+Shift+]
Shift+End
Shift+Home
Ctrl+Delete
Shift+Alt+Left
和 Shift+Alt+Right
Alt+Shift+鼠標左鍵
,Ctrl+Alt+Down/Up
Ctrl+Shift+L
Ctrl+D
下一個匹配的也被選中 (在 sublime 中是刪除當前行,後面自定義快鍵鍵中,設置與 Ctrl+Shift+K
互換了)Ctrl+U
Shift+F12
Ctrl+F12
F2
,輸入新的名字,回車,會發現全部的文件都修改了Error
或 Warning
:當有多個錯誤時能夠按 F8
逐個跳轉diff
: 在 explorer
裏選擇文件右鍵 Set file to compare
,而後須要對比的文件上右鍵選擇 Compare with file_name_you_chose
Ctrl+F
Ctrl+H
Ctrl+Shift+F
F11
Ctrl +/-
Ctrl+B
Ctrl+Shift+E
Ctrl+Shift+F
Ctrl+Shift+G
Ctrl+Shift+D
Ctrl+Shift+U
File -> AutoSave
,或者 Ctrl+Shift+P
,輸入 auto
打開默認鍵盤快捷方式設置:File -> Preferences -> Keyboard Shortcuts
,或者:Alt+F -> p -> k
vue
修改 keybindings.json
:java
// Place your key bindings in this file to overwrite the defaults [ // ctrl+space 被切換輸入法快捷鍵佔用 { "key": "ctrl+alt+space", "command": "editor.action.triggerSuggest", "when": "editorTextFocus" }, // ctrl+d 刪除一行 { "key": "ctrl+d", "command": "editor.action.deleteLines", "when": "editorTextFocus" }, // 與刪除一行的快捷鍵互換 { "key": "ctrl+shift+k", "command": "editor.action.addSelectionToNextFindMatch", "when": "editorFocus" }, // ctrl+shift+/多行註釋 { "key":"ctrl+shift+/", "command": "editor.action.blockComment", "when": "editorTextFocus" }, // 定製與 sublime 相同的大小寫轉換快捷鍵,需安裝 TextTransform 插件 { "key": "ctrl+k ctrl+u", "command": "uppercase", "when": "editorTextFocus" }, { "key": "ctrl+k ctrl+l", "command": "lowercase", "when": "editorTextFocus" } ]
vscode 自定義配置參考:es6
{ "editor.fontSize": 18, "files.associations": { "*.es": "javascript", "*.es6": "javascript" }, // 控制編輯器是否應呈現空白字符 "editor.renderWhitespace": true, // 啓用後,將在保存文件時剪裁尾隨空格。 "files.trimTrailingWhitespace": true, // File extensions that can be beautified as javascript or JSON. "beautify.JSfiles": [ "", "es", "es6", "js", "json", "jsbeautifyrc", "jshintrc" ] }