Removing inaccurate statement

ctrl-v in vim activates visual block mode. visual block mode can be used to
insert a comment character, but is not itself a comment toggle.
This commit is contained in:
Michael Komitee
2013-02-03 21:47:03 -05:00
parent 4d90e839d6
commit a6f9cc3508
+1 -1
View File
@@ -116,7 +116,7 @@ practice, because line-oriented command-line tools such as grep will
not be aware that the commented code is inactive. It is better to add
hashes at the proper indentation level for every commented line. Your
editor probably has the ability to do this easily, and it is worth
learning the comment/uncomment toggle. (*e.g.* ctrl-v on Vim)
learning the comment/uncomment toggle.
Docstrings and Magic
~~~~~~~~~~~~~~~~~~~~