nerdcommenter/doc/NERD_commenter.txt

1045 lines
42 KiB
Plaintext
Raw Normal View History

2007-11-30 08:25:20 +08:00
*NERD_commenter.txt* Plugin for commenting code
NERD COMMENTER REFERENCE MANUAL~
==============================================================================
2008-06-15 17:36:23 +08:00
CONTENTS *NERDCommenterContents*
2007-11-30 08:25:20 +08:00
1.Intro...................................|NERDCommenter|
2.Functionality provided..................|NERDComFunctionality|
2.1 Functionality Summary.............|NERDComFunctionalitySummary|
2.2 Functionality Details.............|NERDComFunctionalityDetails|
2.2.1 Comment map.................|NERDComComment|
2.2.2 Nested comment map..........|NERDComNestedComment|
2008-06-15 17:36:23 +08:00
2.2.3 Toggle comment map..........|NERDComToggleComment|
2.2.4 Minimal comment map.........|NERDComMinimalComment|
2007-11-30 08:25:20 +08:00
2.2.5 Invert comment map..........|NERDComInvertComment|
2.2.6 Sexy comment map............|NERDComSexyComment|
2.2.7 Yank comment map............|NERDComYankComment|
2.2.8 Comment to EOL map..........|NERDComEOLComment|
2.2.9 Append com to line map......|NERDComAppendComment|
2.2.10 Prepend com to line map....|NERDComPrependComment|
2.2.11 Insert comment map.........|NERDComInsertComment|
2.2.12 Use alternate delims map...|NERDComAltDelim|
2.2.13 Comment aligned maps.......|NERDComAlignedComment|
2.2.14 Uncomment line map.........|NERDComUncommentLine|
2.3 Supported filetypes...............|NERDComFiletypes|
2.4 Sexy Comments.....................|NERDComSexyComments|
2.5 The NERDComment function..........|NERDComNERDComment|
3.Options.................................|NERDComOptions|
3.1 Options summary...................|NERDComOptionsSummary|
3.2 Options details...................|NERDComOptionsDetails|
3.3 Default delimiter Options.........|NERDComDefaultDelims|
4. Customising key mappings...............|NERDComMappings|
5. Issues with the script.................|NERDComIssues|
5.1 Delimiter detection heuristics....|NERDComHeuristics|
5.2 Nesting issues....................|NERDComNesting|
6.The author..............................|NERDComAuthor|
7.Changelog...............................|NERDComChangelog|
8.Credits.................................|NERDComCredits|
9.License.................................|NERDComLicense|
2007-11-30 08:25:20 +08:00
==============================================================================
1. Intro *NERDCommenter*
The NERD commenter provides many different commenting operations and styles
2008-09-21 07:46:40 +08:00
which are invoked via key mappings and a menu. These operations are available
for most filetypes.
2007-11-30 08:25:20 +08:00
2008-09-21 07:46:40 +08:00
There are also options that allow to tweak the commenting engine to your
taste.
2007-11-30 08:25:20 +08:00
==============================================================================
2. Functionality provided *NERDComFunctionality*
------------------------------------------------------------------------------
2.1 Functionality summary *NERDComFunctionalitySummary*
The following key mappings are provided by default (there is also a menu
2008-09-21 07:46:40 +08:00
with items corresponding to all the mappings below):
2007-11-30 08:25:20 +08:00
[count]<leader>cc |NERDComComment|
Comment out the current line or text selected in visual mode.
2007-11-30 08:25:20 +08:00
[count]<leader>cn |NERDComNestedComment|
2008-09-21 07:46:40 +08:00
Same as <leader>cc but forces nesting.
2007-11-30 08:25:20 +08:00
[count]<leader>c<space> |NERDComToggleComment|
2007-11-30 08:25:20 +08:00
Toggles the comment state of the selected line(s). If the topmost selected
line is commented, all selected lines are uncommented and vice versa.
[count]<leader>cm |NERDComMinimalComment|
2008-09-21 07:46:40 +08:00
Comments the given lines using only one set of multipart delimiters.
2007-11-30 08:25:20 +08:00
[count]<leader>ci |NERDComInvertComment|
2008-09-21 07:46:40 +08:00
Toggles the comment state of the selected line(s) individually.
2007-11-30 08:25:20 +08:00
[count]<leader>cs |NERDComSexyComment|
2008-05-04 09:41:29 +08:00
Comments out the selected lines ``sexily''
2007-11-30 08:25:20 +08:00
[count]<leader>cy |NERDComYankComment|
2008-09-21 07:46:40 +08:00
Same as <leader>cc except that the commented line(s) are yanked first.
2007-11-30 08:25:20 +08:00
<leader>c$ |NERDComEOLComment|
2007-11-30 08:25:20 +08:00
Comments the current line from the cursor to the end of line.
<leader>cA |NERDComAppendComment|
2007-11-30 08:25:20 +08:00
Adds comment delimiters to the end of line and goes into insert mode between
them.
<leader>cI |NERDComPrependComment|
2007-11-30 08:25:20 +08:00
Adds comment delimiters to the start of line and goes into insert mode between
them.
|NERDComInsertComment|
2007-11-30 08:25:20 +08:00
Adds comment delimiters at the current cursor position and inserts between.
2008-07-19 17:02:52 +08:00
Disabled by default.
2007-11-30 08:25:20 +08:00
<leader>ca |NERDComAltDelim|
2007-11-30 08:25:20 +08:00
Switches to the alternative set of delimiters.
[count]<leader>cl
[count]<leader>cr
[count]<leader>cb |NERDComAlignedComment|
2007-11-30 08:25:20 +08:00
Same as |NERDComComment| except that the delimiters are aligned down the
left side (<leader>cl), the right side (<leader>cr) or both sides
(<leader>cb).
2007-11-30 08:25:20 +08:00
[count]<leader>cu |NERDComUncommentLine|
2007-11-30 08:25:20 +08:00
Uncomments the selected line(s).
------------------------------------------------------------------------------
2.2 Functionality details *NERDComFunctionalityDetails*
------------------------------------------------------------------------------
2.2.1 Comment map *NERDComComment*
Default mapping: [count]<leader>cc
Mapped to: <plug>NERDCommenterComment
2008-06-15 17:36:23 +08:00
Applicable modes: normal visual visual-line visual-block.
2007-11-30 08:25:20 +08:00
Comments out the current line. If multiple lines are selected in visual-line
mode, they are all commented out. If some text is selected in visual or
visual-block mode then the script will try to comment out the exact text that
is selected using multi-part delimiters if they are available.
If a [count] is given in normal mode, the mapping works as though that many
lines were selected in visual-line mode.
------------------------------------------------------------------------------
2.2.2 Nested comment map *NERDComNestedComment*
Default mapping: [count]<leader>cn
Mapped to: <plug>NERDCommenterNest
2007-11-30 08:25:20 +08:00
Applicable modes: normal visual visual-line visual-block.
Performs nested commenting. Works the same as <leader>cc except that if a
2008-06-15 17:36:23 +08:00
line is already commented then it will be commented again.
2007-11-30 08:25:20 +08:00
If |'NERDUsePlaceHolders'| is set then the previous comment delimiters will
2007-11-30 08:25:20 +08:00
be replaced by place-holder delimiters if needed. Otherwise the nested
comment will only be added if the current commenting delimiters have no right
2008-06-15 17:36:23 +08:00
delimiter (to avoid syntax errors)
2007-11-30 08:25:20 +08:00
If a [count] is given in normal mode, the mapping works as though that many
lines were selected in visual-line mode.
Related options:
|'NERDDefaultNesting'|
2007-11-30 08:25:20 +08:00
------------------------------------------------------------------------------
2008-06-15 17:36:23 +08:00
2.2.3 Toggle comment map *NERDComToggleComment*
2007-11-30 08:25:20 +08:00
Default mapping: [count]<leader>c<space>
Mapped to: <plug>NERDCommenterToggle
2007-11-30 08:25:20 +08:00
Applicable modes: normal visual-line.
Toggles commenting of the lines selected. The behaviour of this mapping
depends on whether the first line selected is commented or not. If so, all
2008-06-15 17:36:23 +08:00
selected lines are uncommented and vice versa.
2007-11-30 08:25:20 +08:00
With this mapping, a line is only considered to be commented if it starts with
a left delimiter.
If a [count] is given in normal mode, the mapping works as though that many
lines were selected in visual-line mode.
------------------------------------------------------------------------------
2008-06-15 17:36:23 +08:00
2.2.4 Minimal comment map *NERDComMinimalComment*
2007-11-30 08:25:20 +08:00
Default mapping: [count]<leader>cm
Mapped to: <plug>NERDCommenterMinimal
2007-11-30 08:25:20 +08:00
Applicable modes: normal visual-line.
Comments the selected lines using one set of multipart delimiters if possible.
For example: if you are programming in c and you select 5 lines and press
<leader>cm then a '/*' will be placed at the start of the top line and a '*/'
2007-11-30 08:25:20 +08:00
will be placed at the end of the last line.
Sets of multipart comment delimiters that are between the top and bottom
selected lines are replaced with place holders (see |'NERDLPlace'|) if
|'NERDUsePlaceHolders'| is set for the current filetype. If it is not, then
2007-11-30 08:25:20 +08:00
the comment will be aborted if place holders are required to prevent illegal
syntax.
If a [count] is given in normal mode, the mapping works as though that many
lines were selected in visual-line mode.
------------------------------------------------------------------------------
2.2.5 Invert comment map *NERDComInvertComment*
Default mapping: <leader>ci
Mapped to: <plug>NERDCommenterInvert
2007-11-30 08:25:20 +08:00
Applicable modes: normal visual-line.
Inverts the commented state of each selected line. If the a selected line is
commented then it is uncommented and vice versa. Each line is examined and
2008-06-15 17:36:23 +08:00
commented/uncommented individually.
2007-11-30 08:25:20 +08:00
With this mapping, a line is only considered to be commented if it starts with
a left delimiter.
If a [count] is given in normal mode, the mapping works as though that many
lines were selected in visual-line mode.
------------------------------------------------------------------------------
2.2.6 Sexy comment map *NERDComSexyComment*
Default mapping: [count]<leader>cs
Mapped to: <plug>NERDCommenterSexy
2007-11-30 08:25:20 +08:00
Applicable modes: normal, visual-line.
Comments the selected line(s) ``sexily''... see |NERDComSexyComments| for
a description of what sexy comments are. Can only be done on filetypes for
2008-06-15 17:36:23 +08:00
which there is at least one set of multipart comment delimiters specified.
2007-11-30 08:25:20 +08:00
Sexy comments cannot be nested and lines inside a sexy comment cannot be
commented again.
If a [count] is given in normal mode, the mapping works as though that many
lines were selected in visual-line mode.
Related options:
|'NERDCompactSexyComs'|
2007-11-30 08:25:20 +08:00
------------------------------------------------------------------------------
2.2.7 Yank comment map *NERDComYankComment*
Default mapping: [count]<leader>cy
Mapped to: <plug>NERDCommenterYank
2007-11-30 08:25:20 +08:00
Applicable modes: normal visual visual-line visual-block.
Same as <leader>cc except that it yanks the line(s) that are commented first.
2007-11-30 08:25:20 +08:00
------------------------------------------------------------------------------
2.2.8 Comment to EOL map *NERDComEOLComment*
Default mapping: <leader>c$
Mapped to: <plug>NERDCommenterToEOL
2007-11-30 08:25:20 +08:00
Applicable modes: normal.
Comments the current line from the current cursor position up to the end of
2008-06-15 17:36:23 +08:00
the line.
2007-11-30 08:25:20 +08:00
------------------------------------------------------------------------------
2.2.9 Append com to line map *NERDComAppendComment*
Default mapping: <leader>cA
Mapped to: <plug>NERDCommenterAppend
2007-11-30 08:25:20 +08:00
Applicable modes: normal.
Appends comment delimiters to the end of the current line and goes
2008-06-15 17:36:23 +08:00
to insert mode between the new delimiters.
2007-11-30 08:25:20 +08:00
------------------------------------------------------------------------------
2.2.10 Prepend com to line map *NERDComPrependComment*
Default mapping: <leader>cI
Mapped to: <plug>NERDCommenterPrepend
2007-11-30 08:25:20 +08:00
Applicable modes: normal.
Prepends comment delimiters to the start of the current line and goes to
2008-06-15 17:36:23 +08:00
insert mode between the new delimiters.
2007-11-30 08:25:20 +08:00
------------------------------------------------------------------------------
2.2.11 Insert comment map *NERDComInsertComment*
2008-07-19 17:02:52 +08:00
Default mapping: disabled by default.
Map it to: <plug>NERDCommenterInInsert
2007-11-30 08:25:20 +08:00
Applicable modes: insert.
Adds comment delimiters at the current cursor position and inserts
2008-06-15 17:36:23 +08:00
between them.
2007-11-30 08:25:20 +08:00
2008-07-19 17:02:52 +08:00
NOTE: prior to version 2.1.17 this was mapped to ctrl-c. To restore this
mapping add >
let NERDComInsertMap='<c-c>'
<
to your vimrc.
2007-11-30 08:25:20 +08:00
------------------------------------------------------------------------------
2.2.12 Use alternate delims map *NERDComAltDelim*
Default mapping: <leader>ca
Mapped to: <plug>NERDCommenterAltDelims
2007-11-30 08:25:20 +08:00
Applicable modes: normal.
Changes to the alternative commenting style if one is available. For example,
if the user is editing a c++ file using // comments and they hit <leader>ca
2008-06-15 17:36:23 +08:00
then they will be switched over to /**/ comments.
2007-11-30 08:25:20 +08:00
See also |NERDComDefaultDelims|
------------------------------------------------------------------------------
2.2.13 Comment aligned maps *NERDComAlignedComment*
Default mappings: [count]<leader>cl [count]<leader>cr [count]<leader>cb
Mapped to: <plug>NERDCommenterAlignLeft
<plug>NERDCommenterAlignRight
<plug>NERDCommenterAlignBoth
2007-11-30 08:25:20 +08:00
Applicable modes: normal visual-line.
Same as <leader>cc except that the comment delimiters are aligned on the left
2007-11-30 08:25:20 +08:00
side, right side or both sides respectively. These comments are always nested
2008-06-15 17:36:23 +08:00
if the line(s) are already commented.
2007-11-30 08:25:20 +08:00
If a [count] is given in normal mode, the mapping works as though that many
lines were selected in visual-line mode.
------------------------------------------------------------------------------
2.2.14 Uncomment line map *NERDComUncommentLine*
Default mapping: [count]<leader>cu
Mapped to: <plug>NERDCommenterUncomment
2007-11-30 08:25:20 +08:00
Applicable modes: normal visual visual-line visual-block.
Uncomments the current line. If multiple lines are selected in
visual mode then they are all uncommented.
When uncommenting, if the line contains multiple sets of delimiters then the
``outtermost'' pair of delimiters will be removed.
The script uses a set of heurisics to distinguish ``real'' delimiters from
``fake'' ones when uncommenting. See |NERDComIssues| for details.
If a [count] is given in normal mode, the mapping works as though that many
lines were selected in visual-line mode.
Related options:
|'NERDRemoveAltComs'|
|'NERDRemoveExtraSpaces'|
2007-11-30 08:25:20 +08:00
------------------------------------------------------------------------------
2.3 Supported filetypes *NERDComFiletypes*
Filetypes that can be commented by this plugin:
abaqus abc acedb ada ahdl amiga aml ampl ant apache apachestyle asm68k asm asn
aspvbs atlas autohotkey autoit automake ave awk basic b bc bdf bib bindzone
bst btm caos catalog c cfg cg ch changelog cl clean clipper cmake conf config
context cpp crontab cs csc csp css cterm cupl csv cvs dcl debchangelog
debcontrol debsources def diff django docbk dns dosbatch dosini dot dracula
dsl dtd dtml dylan ecd eiffel elf elmfilt erlang eruby eterm expect exports
fetchmail fgl focexec form fortran foxpro fstab fvwm fx gdb gdmo geek
gentoo-package-keywords' gentoo-package-mask' gentoo-package-use' gnuplot
gtkrc haskell hb h help hercules hog html htmldjango htmlos ia64 icon idlang
idl indent inform inittab ishd iss ist jam java javascript jess jgraph
jproperties jproperties jsp kconfig kix kscript lace lex lftp lifelines lilo
lisp lite lotos lout lprolog lscript lss lua lynx m4 mail make maple masm
master matlab mel mf mib mma model moduala. modula2 modula3 monk mush muttrc
named nasm nastran natural ncf netdict netrw nqc nroff nsis objc ocaml occam
omlet omnimark openroad opl ora otl ox pascal passwd pcap pccts perl pfmain
php phtml pic pike pilrc pine plaintex plm plsql po postscr pov povini ppd
ppwiz procmail progress prolog psf ptcap python python qf radiance ratpoison r
rc readline rebol registry remind rexx robots rpl rtf ruby sa samba sas sass
sather scheme scilab screen scsh sdl sed selectbuf sgml sgmldecl sgmllnx sh
sicad simula sinda skill slang sl slrnrc sm smarty smil smith sml snnsnet
snnspat snnsres snobol4 spec specman spice sql sqlforms sqlj sqr squid st stp
strace svn systemverilog tads taglist tags tak tasm tcl terminfo tex text
plaintex texinfo texmf tf tidy tli trasys tsalt tsscl tssgm uc uil vb verilog
verilog_systemverilog vgrindefs vhdl vim viminfo virata vo_base vrml vsejcl
webmacro wget winbatch wml wvdial xdefaults xf86conf xhtml xkb xmath xml
2008-06-15 17:36:23 +08:00
xmodmap xpm2 xpm xslt yacc yaml z8a
2007-11-30 08:25:20 +08:00
If a language is not in the list of hardcoded supported filetypes then the
&commentstring vim option is used.
------------------------------------------------------------------------------
2.4 Sexy Comments *NERDComSexyComments*
These are comments that use one set of multipart comment delimiters as well as
one other marker symbol. For example: >
/*
* This is a c style sexy comment
* So there!
*/
/* This is a c style sexy comment
2008-06-15 17:36:23 +08:00
* So there!
2007-11-30 08:25:20 +08:00
* But this one is ``compact'' style */
<
2008-09-21 07:46:40 +08:00
Here the multipart delimiters are /* and */ and the marker is *.
2007-11-30 08:25:20 +08:00
------------------------------------------------------------------------------
2.5 The NERDComment function *NERDComNERDComment*
All of the NERD commenter mappings and menu items invoke a single function
which delegates the commenting work to other functions. This function is
public and has the prototype: >
2008-06-15 17:36:23 +08:00
function! NERDComment(isVisual, type)
2007-11-30 08:25:20 +08:00
<
2008-06-15 17:36:23 +08:00
The arguments to this function are simple:
2007-11-30 08:25:20 +08:00
- isVisual: if you wish to do any kind of visual comment then set this to
1 and the function will use the '< and '> marks to find the comment
boundries. If set to 0 then the function will operate on the current
line.
- type: is used to specify what type of commenting operation is to be
2008-09-21 07:46:40 +08:00
performed, and it can be one of the following: "sexy", "invert",
"minimal", "toggle", "alignLeft", "alignRight", "alignBoth", "norm",
"nested", "toEOL", "prepend", "append", "insert", "uncomment", "yank"
2007-11-30 08:25:20 +08:00
For example, if you typed >
:call NERDComment(1, 'sexy')
<
then the script would do a sexy comment on the last visual selection.
2008-06-15 17:36:23 +08:00
2007-11-30 08:25:20 +08:00
==============================================================================
3. Options *NERDComOptions*
------------------------------------------------------------------------------
3.1 Options summary *NERDComOptionsSummary*
|'loaded_nerd_comments'| Turns off the script.
|'NERDAllowAnyVisualDelims'| Allows multipart alternative delims to
2007-11-30 08:25:20 +08:00
be used when commenting in
visual/visual-block mode.
|'NERDBlockComIgnoreEmpty'| Forces right delims to be placed when
2007-11-30 08:25:20 +08:00
doing visual-block comments.
|'NERDCommentWholeLinesInVMode'| Changes behaviour of visual comments.
|'NERDCreateDefaultMappings'| Turn the default mappings on/off.
|'NERDDefaultNesting'| Tells the script to use nested comments
2007-11-30 08:25:20 +08:00
by default.
|'NERDMenuMode'| Specifies how the NERD commenter menu
2007-11-30 08:25:20 +08:00
will appear (if at all).
|'NERDLPlace'| Specifies what to use as the left
2007-11-30 08:25:20 +08:00
delimiter placeholder when nesting
comments.
|'NERDUsePlaceHolders'| Specifies which filetypes may use
2007-11-30 08:25:20 +08:00
placeholders when nesting comments.
|'NERDRemoveAltComs'| Tells the script whether to remove
2007-11-30 08:25:20 +08:00
alternative comment delimiters when
uncommenting.
|'NERDRemoveExtraSpaces'| Tells the script to always remove the
2007-11-30 08:25:20 +08:00
extra spaces when uncommenting
(regardless of whether NERDSpaceDelims
2008-06-15 17:36:23 +08:00
is set)
|'NERDRPlace'| Specifies what to use as the right
2007-11-30 08:25:20 +08:00
delimiter placeholder when nesting
comments.
|'NERDShutUp'| Stops "Unknown filetype" output from the
2007-11-30 08:25:20 +08:00
script
|'NERDSpaceDelims'| Specifies whether to add extra spaces
2007-11-30 08:25:20 +08:00
around delimiters when commenting, and
whether to remove them when
uncommenting.
|'NERDCompactSexyComs'| Specifies whether to use the compact
2007-11-30 08:25:20 +08:00
style sexy comments.
------------------------------------------------------------------------------
3.3 Options details *NERDComOptionsDetails*
2008-06-15 17:36:23 +08:00
To enable any of the below options you should put the given line in your
2007-11-30 08:25:20 +08:00
~/.vimrc
*'loaded_nerd_comments'*
2007-11-30 08:25:20 +08:00
If this script is driving you insane you can turn it off by setting this
option >
let loaded_nerd_comments=1
<
------------------------------------------------------------------------------
*'NERDAllowAnyVisualDelims'*
2008-06-15 17:36:23 +08:00
Values: 0 or 1.
2007-11-30 08:25:20 +08:00
Default: 1.
If set to 1 then, when doing a visual or visual-block comment (but not a
visual-line comment), the script will choose the right delimiters to use for
the comment. This means either using the current delimiters if they are
multipart or using the alternative delimiters if THEY are multipart. For
example if we are editing the following java code: >
float foo = 1221;
float bar = 324;
System.out.println(foo * bar);
<
If we are using // comments and select the "foo" and "bar" in visual-block
2008-06-15 17:36:23 +08:00
mode, as shown left below (where '|'s are used to represent the visual-block
2007-11-30 08:25:20 +08:00
boundary), and comment it then the script will use the alternative delims as
shown on the right: >
float |foo| = 1221; float /*foo*/ = 1221;
float |bar| = 324; float /*bar*/ = 324;
System.out.println(foo * bar); System.out.println(foo * bar);
<
------------------------------------------------------------------------------
*'NERDBlockComIgnoreEmpty'*
2008-06-15 17:36:23 +08:00
Values: 0 or 1.
2007-11-30 08:25:20 +08:00
Default: 1.
This option affects visual-block mode commenting. If this option is turned
on, lines that begin outside the right boundary of the selection block will be
ignored.
For example, if you are commenting this chunk of c code in visual-block mode
(where the '|'s are used to represent the visual-block boundary) >
#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
|int| main(){
| | printf("SUCK THIS\n");
| | while(1){
| | fork();
| | }
2008-06-15 17:36:23 +08:00
|} |
2007-11-30 08:25:20 +08:00
<
If NERDBlockComIgnoreEmpty=0 then this code will become: >
#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
/*int*/ main(){
/* */ printf("SUCK THIS\n");
/* */ while(1){
/* */ fork();
/* */ }
2008-06-15 17:36:23 +08:00
/*} */
2007-11-30 08:25:20 +08:00
<
Otherwise, the code block would become: >
#include <sys/types.h>
#include <unistd.h>
#include <stdio.h>
/*int*/ main(){
printf("SUCK THIS\n");
while(1){
fork();
}
2008-06-15 17:36:23 +08:00
/*} */
2007-11-30 08:25:20 +08:00
<
------------------------------------------------------------------------------
*'NERDCommentWholeLinesInVMode'*
2007-11-30 08:25:20 +08:00
Values: 0, 1 or 2.
Default: 0.
By default the script tries to comment out exactly what is selected in visual
mode (v). For example if you select and comment the following c code (using |
to represent the visual boundary): >
in|t foo = 3;
int bar =| 9;
int baz = foo + bar;
<
This will result in: >
in/*t foo = 3;*/
/*int bar =*/ 9;
int baz = foo + bar;
<
But some people prefer it if the whole lines are commented like: >
/*int foo = 3;*/
/*int bar = 9;*/
int baz = foo + bar;
<
If you prefer the second option then stick this line in your vimrc: >
let NERDCommentWholeLinesInVMode=1
<
If the filetype you are editing only has no multipart delimiters (for example
a shell script) and you hadnt set this option then the above would become >
in#t foo = 3;
#int bar = 9;
<
(where # is the comment delimiter) as this is the closest the script can
come to commenting out exactly what was selected. If you prefer for whole
lines to be commented out when there is no multipart delimiters but the EXACT
text that was selected to be commented out if there IS multipart delimiters
then stick the following line in your vimrc: >
let NERDCommentWholeLinesInVMode=2
<
2008-09-21 07:46:40 +08:00
Note that this option does not affect the behaviour of commenting in
|visual-block| mode.
2007-11-30 08:25:20 +08:00
------------------------------------------------------------------------------
*'NERDCreateDefaultMappings'*
Values: 0 or 1.
Default: 1.
If set to 0, none of the default mappings will be created.
See also |NERDComMappings|.
2007-11-30 08:25:20 +08:00
------------------------------------------------------------------------------
*'NERDRemoveAltComs'*
2007-11-30 08:25:20 +08:00
Values: 0 or 1.
Default: 1.
When uncommenting a line (for a filetype with an alternative commenting style)
2008-09-21 07:46:40 +08:00
this option tells the script whether to look for, and remove, comment
2007-11-30 08:25:20 +08:00
delimiters of the alternative style.
For example, if you are editing a c++ file using // style comments and you go
<leader>cu on this line: >
2007-11-30 08:25:20 +08:00
/* This is a c++ comment baby! */
<
It will not be uncommented if the NERDRemoveAltComs is set to 0.
------------------------------------------------------------------------------
*'NERDRemoveExtraSpaces'*
2007-11-30 08:25:20 +08:00
Values: 0 or 1.
Default: 1.
By default, the NERD commenter will remove spaces around comment delimiters if
either:
1. |'NERDSpaceDelims'| is set to 1.
2007-11-30 08:25:20 +08:00
2. NERDRemoveExtraSpaces is set to 1.
This means that if we have the following lines in a c code file: >
/* int foo = 5; */
/* int bar = 10; */
int baz = foo + bar
<
If either of the above conditions hold then if these lines are uncommented
they will become: >
int foo = 5;
int bar = 10;
int baz = foo + bar
<
Otherwise they would become: >
int foo = 5;
int bar = 10;
int baz = foo + bar
<
If you want the spaces to be removed only if |'NERDSpaceDelims'| is set then
2007-11-30 08:25:20 +08:00
set NERDRemoveExtraSpaces to 0.
------------------------------------------------------------------------------
*'NERDLPlace'*
*'NERDRPlace'*
2007-11-30 08:25:20 +08:00
Values: arbitrary string.
2008-06-15 17:36:23 +08:00
Default:
2007-11-30 08:25:20 +08:00
NERDLPlace: "[>"
NERDRPlace: "<]"
These options are used to control the strings used as place-holder delimiters.
Place holder delimiters are used when performing nested commenting when the
filetype supports commenting styles with both left and right delimiters.
To set these options use lines like: >
2008-06-15 17:36:23 +08:00
let NERDLPlace="FOO"
let NERDRPlace="BAR"
2007-11-30 08:25:20 +08:00
<
Following the above example, if we have line of c code: >
/* int horse */
<
and we comment it with <leader>cn it will be changed to: >
2007-11-30 08:25:20 +08:00
/*FOO int horse BAR*/
<
When we uncomment this line it will go back to what it was.
------------------------------------------------------------------------------
*'NERDMenuMode'*
2007-11-30 08:25:20 +08:00
Values: 0, 1, 2, 3.
Default: 3
This option can take 4 values:
"0": Turns the menu off.
"1": Turns the 'comment' menu on with no menu shortcut.
"2": Turns the 'comment 'menu on with <alt>-c as the shortcut.
"3": Turns the 'Plugin -> comment' menu on with <alt>-c as the shortcut.
2008-06-15 17:36:23 +08:00
2007-11-30 08:25:20 +08:00
------------------------------------------------------------------------------
*'NERDUsePlaceHolders'*
2007-11-30 08:25:20 +08:00
Values: 0 or 1.
Default 1.
This option is used to specify whether place-holder delimiters should be used
2008-09-21 07:46:40 +08:00
when creating a nested comment.
2007-11-30 08:25:20 +08:00
------------------------------------------------------------------------------
*'NERDShutUp'*
2007-11-30 08:25:20 +08:00
Values: 0 or 1.
Default 1.
This option is used to prevent the script from echoing "Unknown filetype"
messages. Stick this line in your vimrc: >
let NERDShutUp=1
<
------------------------------------------------------------------------------
*'NERDSpaceDelims'*
2007-11-30 08:25:20 +08:00
Values: 0 or 1.
Default 0.
Some people prefer a space after the left delimiter and before the right
delimiter like this: >
/* int foo=2; */
<
as opposed to this: >
/*int foo=2;*/
<
If you want spaces to be added then set NERDSpaceDelims to 1 in your vimrc.
See also |'NERDRemoveExtraSpaces'|.
2007-11-30 08:25:20 +08:00
------------------------------------------------------------------------------
*'NERDCompactSexyComs'*
2007-11-30 08:25:20 +08:00
Values: 0 or 1.
Default 0.
Some people may want their sexy comments to be like this: >
/* Hi There!
* This is a sexy comment
* in c */
<
As opposed to like this: >
2008-06-15 17:36:23 +08:00
/*
2007-11-30 08:25:20 +08:00
* Hi There!
* This is a sexy comment
2008-06-15 17:36:23 +08:00
* in c
2007-11-30 08:25:20 +08:00
*/
<
If this option is set to 1 then the top style will be used.
------------------------------------------------------------------------------
*'NERDDefaultNesting'*
2007-11-30 08:25:20 +08:00
Values: 0 or 1.
Default 1.
2007-11-30 08:25:20 +08:00
When this option is set to 1, comments are nested automatically. That is, if
you hit <leader>cc on a line that is already commented it will be commented
2007-11-30 08:25:20 +08:00
again
------------------------------------------------------------------------------
3.3 Default delimiter customisation *NERDComDefaultDelims*
If you want the NERD commenter to use the alternative delimiters for a
specific filetype by default then put a line of this form into your vimrc: >
2008-09-21 07:46:40 +08:00
let NERD_<filetype>_alt_style=1
2007-11-30 08:25:20 +08:00
<
Example: java uses // style comments by default, but you want it to default to
/* */ style comments instead. You would put this line in your vimrc: >
let NERD_java_alt_style=1
<
See |NERDComAltDelim| for switching commenting styles at runtime.
==============================================================================
4. Key mapping customisation *NERDComMappings*
2007-11-30 08:25:20 +08:00
To change a mapping just map another key combo to the internal <plug> mapping.
For example, to remap the *NERDComComment* mapping to ",omg" you would put
2008-09-21 08:55:08 +08:00
this line in your vimrc: >
map ,omg <plug>NERDCommenterComment
2007-11-30 08:25:20 +08:00
<
2008-09-21 08:55:08 +08:00
This will stop the corresponding default mappings from being created.
See the help for the mapping in question to see which <plug> mapping to
2008-09-21 08:55:08 +08:00
map to.
See also |'NERDCreateDefaultMappings'|.
2008-06-15 17:36:23 +08:00
2007-11-30 08:25:20 +08:00
==============================================================================
5. Issues with the script *NERDComIssues*
2007-11-30 08:25:20 +08:00
------------------------------------------------------------------------------
5.1 Delimiter detection heuristics *NERDComHeuristics*
2007-11-30 08:25:20 +08:00
Heuristics are used to distinguish the real comment delimiters
Because we have comment mappings that place delimiters in the middle of lines,
removing comment delimiters is a bit tricky. This is because if comment
delimiters appear in a line doesnt mean they really ARE delimiters. For
example, Java uses // comments but the line >
System.out.println("//");
<
2008-06-15 17:36:23 +08:00
clearly contains no real comment delimiters.
2007-11-30 08:25:20 +08:00
To distinguish between ``real'' comment delimiters and ``fake'' ones we use a
set of heuristics. For example, one such heuristic states that any comment
delimiter that has an odd number of non-escaped " characters both preceding
and following it on the line is not a comment because it is probably part of a
string. These heuristics, while usually pretty accurate, will not work for all
cases.
------------------------------------------------------------------------------
5.2 Nesting issues *NERDComNesting*
2007-11-30 08:25:20 +08:00
If we have some line of code like this: >
/*int foo */ = /*5 + 9;*/
<
This will not be uncommented legally. The NERD commenter will remove the
"outter most" delimiters so the line will become: >
int foo */ = /*5 + 9;
<
which almost certainly will not be what you want. Nested sets of comments will
uncomment fine though. Eg: >
/*int/* foo =*/ 5 + 9;*/
<
will become: >
int/* foo =*/ 5 + 9;
<
(Note that in the above examples I have deliberately not used place holders
for simplicity)
==============================================================================
6. The author *NERDComAuthor*
2007-11-30 08:25:20 +08:00
The author of the NERD commenter is Martyzillatron --- the half robot, half
dinosaur bastard son of Megatron and Godzilla. He enjoys destroying
metropolises and eating tourist busses.
Drop him a line at martin_grenfell at msn.com. He would love to hear from you.
its a lonely life being the worlds premier terror machine. How would you feel
if your face looked like a toaster and a t-rex put together? :(
==============================================================================
8. Changelog *NERDComChangelog*
2007-11-30 08:25:20 +08:00
2008-07-28 18:52:34 +08:00
2.x.x
- add support for potwiki. Thanks to Bernhard Grotz for the email.
2008-08-02 10:51:45 +08:00
- add support for SVNcommig. Thanks to John O'Shea.
2008-07-27 18:09:45 +08:00
2.1.18
- add support for llvm. Thanks to nicothakis.
2008-07-27 18:11:34 +08:00
- add support for xquery. Thanks to Phillip Kovalev.
2008-07-01 19:11:06 +08:00
2.1.17
- fixed haskell delimiters (hackily). Thanks to Elias Pipping.
2008-07-13 08:09:03 +08:00
- add support for mailcap. Thanks to Pascal Brueckner.
2008-07-13 08:09:22 +08:00
- add support for stata. Thanks to Jerónimo Carballo.
- applied a patch from ewfalor to fix an error in the help file with the
NERDMapleader doc
2008-07-19 17:02:52 +08:00
- disable the insert mode ctrl-c mapping by default, see :help
NERDComInsertComment if you wish to restore it
2008-07-01 19:11:06 +08:00
2007-11-30 08:25:20 +08:00
==============================================================================
8. Credits *NERDComCredits*
2007-11-30 08:25:20 +08:00
Thanks and respect to the following people:
Thanks to Nick Brettell for his many ideas and criticisms. A bloody good
2008-06-15 17:36:23 +08:00
bastard.
2007-11-30 08:25:20 +08:00
:normal :.-2s/good//
Thanks to Matthew Hawkins for his awesome refactoring!
2008-06-15 17:36:23 +08:00
Thanks to the authors of the vimspell whose documentation
2007-11-30 08:25:20 +08:00
installation function I stole :)
Thanks to Greg Searle for the idea of using place-holders for nested comments.
Thanks to Nguyen for the suggestions and pointing the h file highlighting bug!
Also, thanks for the idea of doing sexy comments as well as his suggestions
2008-06-15 17:36:23 +08:00
relating to it :P
Thanks again to Nguyen for complaining about the NERD_comments menu mapping
(<Alt>-c) interfering with another mapping of his... and thus the
2007-11-30 08:25:20 +08:00
NERD_dont_create_menu_shortcut option was born :P
(it was then replaced with NERD_menu_mode in version 1.67 :)
Cheers to Litchi for the idea of having a mapping that appends a comment to
the current line :)
Thanks to jorge scandaliaris and Shufeng Zheng for telling me about some
problems with commenting in visual mode. Thanks again to Jorge for his
continued suggestions on this matter :)
Thanks to Martin Stubenschrott for pointing out a bug with the <C-c> mapping
:) Ive gotta stop breaking this mapping!
Thanks to Markus Erlmann for pointing out a conflict that this script was
having with the taglist plugin.
Thanks to Brent Rice for alerting me about, and helping me track down, a bug
in the script when the "ignorecase" option in vim was set.
Thanks to Richard Willis for telling me about how line continuation was
causing problems on cygwin. Also, thanks pointing out a bug in the help file
and for suggesting // comments for c (its about time SOMEONE did :P). May ANSI
have mercy on your soul :)
Thanks to Igor Prischepoff for suggesting that i implement "toggle comments".
Also, thanks for his suggested improvements about toggle comments after i
implemented them.
Thanks to harry for telling me that i broke the <leader>cn mapping in 1.53 :),
and thanks again for telling me about a bug that occurred when editing a file
in a new tab.
Thanks to Martin (Krischikim?) for his patch that fixed a bug with the doc
install function and added support for ada comments with spaces as well as
making a couple of other small changes.
Thanks to David Bourgeois for pointing out a bug with when commenting c files
:)... [a few days later] ok i completely misunderstood what David was talking
about and ended up fixing a completely different bug to what he was talking
about :P
Thanks to David Bourgeois for pointing out a bug when changing buffers.
Cheers to Eike Von Seggern for sending me a patch to fix a bug in 1.60 that
was causing spaces to be added to the end of lines with single-part
delimiters. It's nice when people do my work for me :D
Thanks to Torsten Blix for telling me about a couple of bugs when uncommenting
sexy comments. Sexy comments dont look so sexy when they are only half removed
:P
Thanks to Alexander "boesi" Bosecke for pointing out a bug that was stopping
the NERD_space_delim_filetype_regexp option from working with left aligned
2008-06-15 17:36:23 +08:00
toggle comments. And for pointing out a bug when initialising VB comments.
2007-11-30 08:25:20 +08:00
Thanks to Stefano Zacchiroli for suggesting the idea of "Minimal comments".
And for suggested improvements to minimal comments.
Thanks to Norick Chen for emailing in a patch that fixed the asp delimiters.
In 1.65
Thanks to Joseph Barker for the sugesting that the menu be an optional
feature.
Thanks to Gary Church and Tim Carey-Smith for complaining about the
keymappings and causing me to introduce the NERD_mapleader option :)
Thanks to Markus Klinik for emailing me about a bug for sexy comments where
spaces were being eaten.
Thanks to Anders for emailing me a patch to help get rid of all the visual
bells and screen scrolling.
Thanks to Anders and Markus Klinik for emailing me about the screen scrolling
issues and finally getting me off my ass about them :P
Thanks to Seth Mason for sending me a patch to fix some pathing issues for the
help doc installation.
Cheers to James Hales for the patch that made the comment maps work better with
counts, and made the script reset comment delims for a buffer when its
filetype changes.
Cheers to heptite on #vim for helping me track down some tab-space conversion
bugs.
Cheers to Cheng Fang for the bug reports :D
2007-11-30 08:34:34 +08:00
Cheers to Yongwei Wu for a bug report about the passwd filetype.
Thanks to David Miani for reporting a space-removal bug when using the
NERDSpaceDelims option.
Thanks to Jeremy Hinegardner for emailing me about a bug with aligned
comments and the NERDSpaceDelims option.
Thanks to marco for suggesting NERDDefaultNesting be set by default.
Thanks to Ingo Karkat for the bug reports and the bugfix patch.
Thanks to Zhang Shuhan for sending me a report about spaces not being removed
properly in some circumstances. Also, thanks for emailing me a bunch of bug
reports about sexy/toggle comments and for testing my fixes.
2008-05-04 09:41:29 +08:00
Thanks to tpope for the english lesson.
2008-06-27 08:35:02 +08:00
Thanks to Ben Schmidt, David Fishburn, and Erik Falor for emailing me about an
2008-06-27 08:46:56 +08:00
incompatibility with vim7.2. Thanks also to JaGoTerr for posting the issue.
2008-06-27 08:35:02 +08:00
2008-07-01 19:11:06 +08:00
Thanks to Elias Pipping for sending me a bug report about haskell commenting.
2008-09-09 18:37:43 +08:00
Thanks to mntnoe for pointing out incorrect delimiters for haskell.
2007-11-30 08:25:20 +08:00
Not to forget! Thanks to the following people for sending me new filetypes to
support :D
The hackers The filetypes~
Sam R verilog
Jonathan Derque context, plaintext and mail
Vigil fetchmail
Michael Brunner kconfig
Antono Vasiljev netdict
Melissa Reid omlet
Ilia N Ternovich quickfix
2008-08-02 10:51:45 +08:00
John O'Shea RTF, SVNcommitlog and vcscommit, SVNCommit
2007-11-30 08:25:20 +08:00
Anders occam
Mark Woodward csv
fREW gentoo-package-mask,
gentoo-package-keywords,
gentoo-package-use, and vo_base
Alexey verilog_systemverilog, systemverilog
Lizendir fstab
Michael Böhler autoit, autohotkey and docbk
Aaron Small cmake
Ramiro htmldjango and django
Stefano Zacchiroli debcontrol, debchangelog, mkd
2007-11-30 08:25:20 +08:00
Alex Tarkovsky ebuild and eclass
Jorge Rodrigues gams
Rainer Müller Objective C
Jason Mills Groovy
Normandie Azucena vera
Florian Apolloner ldif
David Fishburn lookupfile
Niels Aan de Brugh rst
Don Hatlestad ahk
Christophe Benz Desktop and xsd
Eyolf Østrem lilypond, bbx and lytex
Ingo Karkat dosbatch
Nicolas Weber markdown, objcpp
tinoucas gentoo-conf-d
Greg Weber D, haml
Bruce Sherrod velocity
2008-09-09 18:49:30 +08:00
timberke cobol, calibre
2008-06-15 17:36:23 +08:00
Aaron Schaefer factor
Laurent ARNOUD asterisk, mplayerconf
2007-12-07 15:17:15 +08:00
Kuchma Michael plsql
Brett Warneke spectre
2007-12-14 07:52:15 +08:00
Pipp lhaskell
2007-12-14 10:53:12 +08:00
Renald Buter scala
Vladimir Lomov asymptote
2008-01-18 18:20:28 +08:00
Marco mrxvtrc, aap
nicothakis SVNAnnotate, CVSAnnotate, SVKAnnotate,
2008-05-17 11:44:36 +08:00
SVNdiff, gitAnnotate, gitdiff, dtrace
2008-09-09 18:51:57 +08:00
llvm, applescript
Chen Xing Wikipedia
2008-03-10 16:10:22 +08:00
Jacobo Diaz dakota, patran
Li Jin gentoo-env-d, gentoo-init-d,
gentoo-make-conf, grub, modconf, sudoers
2008-04-17 19:13:34 +08:00
SpookeyPeanut rib
2008-04-17 19:18:00 +08:00
Greg Jandl pyrex/cython
2008-04-28 16:38:51 +08:00
Christophe Benz services, gitcommit
A Pontus vimperator
2008-06-15 17:34:08 +08:00
Stromnov slice, bzr
2008-05-19 11:42:19 +08:00
Martin Kustermann pamconf
2008-05-24 12:35:03 +08:00
Indriði Einarsson mason
2008-05-24 14:55:08 +08:00
Chris map
2008-06-20 17:46:17 +08:00
Krzysztof A. Adamski group
2008-07-13 08:09:03 +08:00
Pascal Brueckner mailcap
2008-07-13 08:09:22 +08:00
Jerónimo Carballo stata
2008-07-27 18:11:34 +08:00
Phillip Kovalev xquery
2008-07-28 18:52:34 +08:00
Bernhard Grotz potwiki
2008-09-09 18:44:07 +08:00
sgronblo man
==============================================================================
9. License *NERDComLicense*
The NERD commenter is released under the wtfpl.
See http://sam.zoy.org/wtfpl/COPYING.