Visual Studio Code是個牛逼的編輯器,啟動非常快,完全可以用來代替其他文本文件編輯工具。又可以用來做開發(fā),支持各種語言,相比其他IDE,輕量級完全可配置還集成Git感覺非常的適合前端開發(fā)。 所以我仔細研究了一下文檔未來可能會作為主力工具使用。
主命令框
最重要的功能就是F1或Ctrl+Shift+P打開的命令面板了,在這個命令框里可以執(zhí)行VSCode的任何一條命令,甚至關(guān)閉這個編輯器。
按一下Backspace會進入到Ctrl+P模式里
在Ctrl+P下輸入>又可以回到Ctrl+Shift+P模式。
在Ctrl+P窗口下還可以
直接輸入文件名,跳轉(zhuǎn)到文件
? 列出當(dāng)前可執(zhí)行的動作
! 顯示Errors或Warnings,也可以`Ctrl+Shift+M
: 跳轉(zhuǎn)到行數(shù),也可以Ctrl+G直接進入
@ 跳轉(zhuǎn)到symbol(搜索變量或者函數(shù)),也可以Ctrl+Shift+O直接進入
@:根據(jù)分類跳轉(zhuǎn)symbol,查找屬性或函數(shù),也可以Ctrl+Shift+O后輸入:進入
# 根據(jù)名字查找symbol,也可以Ctrl+T
常用快捷鍵編輯器與窗口管理同時打開多個窗口(查看多個項目)
打開一個新窗口: Ctrl+Shift+N
關(guān)閉窗口: Ctrl+Shift+W
同時打開多個編輯器(查看多個文件)
新建文件 Ctrl+N
文件之間切換 Ctrl+Tab
切出一個新的編輯器(最多3個)Ctrl+\,也可以按住Ctrl鼠標(biāo)點擊Explorer里的文件名
左中右3個編輯器的快捷鍵Ctrl+1 Ctrl+2 Ctrl+3
3個編輯器之間循環(huán)切換 Ctrl+`
編輯器換位置,Ctrl+k然后按Left或Right
代碼編輯格式調(diào)整
代碼行縮進Ctrl+[ Ctrl+]
Ctrl+C Ctrl+V如果不選中,默認復(fù)制或剪切一整行
代碼格式化:Shift+Alt+F,或Ctrl+Shift+P后輸入format code
上下移動一行: Alt+Up 或 Alt+Down
向上向下復(fù)制一行: Shift+Alt+Up或Shift+Alt+Down
在當(dāng)前行下邊插入一行Ctrl+Enter
在當(dāng)前行上方插入一行Ctrl+Shift+Enter
光標(biāo)相關(guān)
移動到行首:Home
移動到行尾:End
移動到文件結(jié)尾:Ctrl+End
移動到文件開頭:Ctrl+Home
移動到定義處:F12
定義處縮略圖:只看一眼而不跳轉(zhuǎn)過去Alt+F12
移動到后半個括號 Ctrl+Shift+]
選擇從光標(biāo)到行尾Shift+End
選擇從行首到光標(biāo)處Shift+Home
刪除光標(biāo)右側(cè)的所有字Ctrl+Delete
Shrink/expand selection: Shift+Alt+Left和Shift+Alt+Right
Multi-Cursor:可以連續(xù)選擇多處,然后一起修改,Alt+Click添加cursor或者Ctrl+Alt+Down 或 Ctrl+Alt+Up
同時選中所有匹配的Ctrl+Shift+L
Ctrl+D下一個匹配的也被選中(被我自定義成刪除當(dāng)前行了,見下邊Ctrl+Shift+K)
回退上一個光標(biāo)操作Ctrl+U
重構(gòu)代碼
找到所有的引用:Shift+F12
同時修改本文件中所有匹配的:Ctrl+F12
重命名:比如要修改一個方法名,可以選中后按F2,輸入新的名字,回車,會發(fā)現(xiàn)所有的文件都修改過了。
跳轉(zhuǎn)到下一個Error或Warning:當(dāng)有多個錯誤時可以按F8逐個跳轉(zhuǎn)
查看diff 在explorer里選擇文件右鍵 Set file to compare,然后需要對比的文件上右鍵選擇Compare with 'file_name_you_chose'.
查找替換
查找 Ctrl+F
查找替換 Ctrl+H
整個文件夾中查找 Ctrl+Shift+F
匹配符:
* to match one or more characters in a path segment
? to match on one character in a path segment
** to match any number of path segments ,including none
{} to group conditions (e.g. {**/*.html,**/*.txt} matches all html and txt files)
[] to declare a range of characters to match (e.g., example.[0-9] to match on example.0,example.1, …
顯示相關(guān)
全屏:F11
zoomIn/zoomOut:Ctrl + =/Ctrl + -
側(cè)邊欄顯/隱:Ctrl+B
側(cè)邊欄4大功能顯示:
Show Explorer Ctrl+Shift+E
Show SearchCtrl+Shift+F
Show GitCtrl+Shift+G
Show DebugCtrl+Shift+D
Show OutputCtrl+Shift+U
其他
自動保存:File -> AutoSave ,或者Ctrl+Shift+P,輸入 auto
修改默認快捷鍵
File -> Preferences -> Keyboard Shortcuts
修改keybindings.json,我的顯示在這里C:\Users\Administrator\AppData\Roaming\Code\User\keybindings.json
1234567891011121314151617181920212223242526 // 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" }]
插件
新版本支持插件安裝了
插件市場https://marketplace.visualstudio.com/#VSCode
安裝插件
F1 輸入 extensions

點擊第一個開始安裝或升級,或者也可以 Ctrl+P 輸入 ext install進入
點擊第二個會列出已經(jīng)安裝的擴展,可以從中卸載