Skip to content

Instantly share code, notes, and snippets.

@AZaviruha
Forked from ultim8k/vim-multiline-comment.md
Created April 6, 2023 07:38
Show Gist options
  • Save AZaviruha/c21857bef3dcb64919a52ee9ded23427 to your computer and use it in GitHub Desktop.
Save AZaviruha/c21857bef3dcb64919a52ee9ded23427 to your computer and use it in GitHub Desktop.
(un) comment multiple lines vim

From: http://stackoverflow.com/questions/1676632/whats-a-quick-way-to-comment-uncomment-lines-in-vim

For those tasks I use most of the time block selection.

Put your cursor on the first # character, press Ctrl``V (or Ctrl``Q for gVim), and go down until the last commented line and press x, that will delete all the # characters vertically.

For commenting a block of text is almost the same: First, go to the first line you want to comment, press Ctrl``V, and select until the last line. Second, press Shift``I``#``Esc (then give it a second), and it will insert a # character on all selected lines. For the stripped-down version of vim shipped with debian/ubuntu by default, type : s/^/# in the second step instead.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment