G-γ - VIM
- Install Vim plugins through managers
- Easy way to have a
.vimrc
ready to go
- How to make uncomment/comment block
- To uncomment
- put cursor on the first
#
character (or other comment operator)
Ctrl + V
- go down until the last commented line
- x
to delete all the
#` vertically
- To comment
- go to the first line you want to comment
Ctrl + V
to enter in VISUAL BLOCK mode.
- select until the last line
- press
Shift + I
to put the editor in INSERT mode
- press
#
to add a hash to the first line.
- press
Esc
twice to insert a #
on all other selected lines.
- Experience on boosting Vim capabilities