2021-01-28
learn-visual-studio-code

有關 workspace 的部分

List Some ShoutCut

  • `Ctrl + `` : toggle terminal wondow 滿常用的
  • Command + Shift + P : open the command pallet
    • you can search for any command
  • Ctrl + Tab, Ctrl + Shift + Tab : 在多個開啟的檔案中,做切換
  • Command + 1, 2 .. : 在開啟的不同檔案 tab (grid) 中切換
  • Command + P : 搜尋 file and open file
  • Command + D : 在一個字上,按下幾次 Command + D, 可以選取同樣的字串,一起修改
  • Command + B : toggle side menu
  • zen mode - 可以來試試看
    • 先按 Command + K, 放掉按鍵後按 Z
  • Command + D : 在一個字上,按下幾次 Command + D, 可以選取同樣的字串,一起修改
  • Command + Option + Shift : 可以 verital 多個 cursor

Font

Extension

theme

  • cobalt 2 : search cobalt
  • Solarized

Power Extension

  • Bracket Pair Colorizer
  • Advanced New File
  • Better Comments
  • todo hightlight
  • polacode
  • open in browser
  • vscode-icons
  • settings sync - 要來用用看
  • gitlens
  • dotenv
  • editorconfig for vs code
  • bookmarks
  • project manager

Some Power Extension (about javascript) but I am not used

  • quokka
  • auto close tag
  • live server
  • javascript es6 snippets
  • search noder_modules
  • import cost
  • eslint
  • intellisense for css

Docuemnt

試試 vim plugin 的整合

  • VSCodeVim/Vim - Vim for Visual Studio Code
    • To enable key-repeating execute the following in your Terminal and restart VS Code - Mac 中,需要設定的部分
      • $ defaults write com.microsoft.VSCode ApplePressAndHoldEnabled -bool false # For VS Code

vs-code and vim

Reference

Read More

2020-09-16
vs-code-start

Read More

2020-09-16
vs_code_and_vim

vim 是我很喜歡,也是目前最常用的 editor。
最近看 vs-code 滿好用的,就想說來試試看 vs-code & vim 的整合,看看是否會喜歡這樣的方式

Reference

Read More