<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><br><blockquote style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex" class="gmail_quote"><div> Ctrl + / should comment out a chunk of text on most editors that I've used (Save for e.g., vim).</div></blockquote><span class=""></span><br></div><div class="gmail_quote">And it's pretty trivial to set up in vim (note that you'd tupically customize comment marker on a per-language basis through an autocmd function).  This maps commenting out a block to "-" and uncommenting to "_":<br><br><div style="margin-left:40px"><span style="font-family:monospace,monospace">" Clear all comment markers (one rule for all languages)<br>map _ :s/^\/\/\\|^--\\|^> \\|^[#"%!;]//<CR>:nohlsearch<CR><br>"Insert comment markers (assumes # unless overridden)     <br>map - :s/^/#/<CR>:nohlsearch<CR> <br><br></span></div>There are also smarter options through various plugins, as well.<br><br></div><div class="gmail_quote">At any rate, block commenting isn't something I've ever missed or felt was a limitation in any way, though that's just my $0.02.<br><br></div><div class="gmail_quote">Cheers,<br></div><div class="gmail_quote">-Joe<br></div><div class="gmail_quote"><span style="font-family:monospace,monospace"></span></div></div></div>