VIM Trick: How to Comment Multiple Lines
If you need to comment out lines of text inside VIM, you can try this trick:
(Enter command mode in VIM)
:40,105s/^/#/g
This will insert the # character at the beginning of each line starting from line number 40 to line number 105.
If you cannot see the line numbers, do this:
(Enter command mode in VIM)
:set number
To remove the lines:
:set nonumber
This is quite handy if you need to comment out lines of codes in a script.
Related Posts
2 Comments to “VIM Trick: How to Comment Multiple Lines”
Post comment
Search PinoyTux
Subscribe to Email Feeds
Blog Lounge
Popular Posts
Recent Posts
Drop your Card Here
Recent Comments
- Anidich1 on Tip: Add User and Generate Password Script
- Tom S on Cebu Pacific Sucks
- kadersardar on PinoyTux Spreads Some CommentLuv
- Steve on Creative Labs Threatens Third Party Driver Modder
- Barry on Free Laptops with Broadband Connection









It is quite useful, tahnks for the trick.
Rai,
This is helpful indeed it makes administration easier… ;p