Commenting Multiple Lines
Follow the steps given below for commenting multiple using the terminal.
- First, press
ESC
- Go to the line from which you want to start commenting. Then, press
ctrl + v
, this will enable the visual block mode. - use the
down arrow
to select multiple lines that you want to comment. - Now, press
SHIFT + I
to enable insert mode. - Press
#
and it will add a comment to the first line. Then pressECS
and wait for a second,#
will be added to all the lines.
Uncommenting Multiple Lines
- Press
CTRL + V
to enable visual block mode. - Move down and select the lines till you want to uncomment.
- press
x
and it will uncomment all the selected lines at once.