跳转至

VSCode settings I'm accustomed to

Vim enthusiasts are always looking for convenience, and I'm no exception.

shortcut key function
Ctrl+~ toggle terminal
Ctrl+Shift+~ create new terminal
Ctrl+/ 选中批量注释or取消注释 toggle line comment
Shift+Tab 批量取消tab缩进
Ctrl+Shift+N create new window
Alt+B open/close the sidebar
Ctrl+Tab switch tabs

some notes

open the Keyboard Shortcuts

search selectPrevSuggestion, set it to Ctrl+K

search selectNextSuggestion, set it to Ctrl+J

Vim Tips

you can use the use the folling sequence to delete around a pair of quotes (included), which are the cloest pair of quotes to your cursor:

da"
delete inside sequence to delete the characters whinin the quotes whinout deleting the quotes:
di"
change inside sequence to reomve the characters and switch to insert mode
ci"

VSCode settings