r1286 - in /trunk/packages/vim-scripts: debian/changelog debian/vim-scripts.status doc/NERD_commenter.txt html/index.html html/plugin_NERD_commenter.vim.html plugin/NERD_commenter.vim

jamessan at users.alioth.debian.org jamessan at users.alioth.debian.org
Fri Dec 5 16:17:51 UTC 2008


Author: jamessan
Date: Fri Dec  5 16:17:51 2008
New Revision: 1286

URL: http://svn.debian.org/wsvn/pkg-vim/?sc=1&rev=1286
Log:
Update NERD_commenter

Modified:
    trunk/packages/vim-scripts/debian/changelog
    trunk/packages/vim-scripts/debian/vim-scripts.status
    trunk/packages/vim-scripts/doc/NERD_commenter.txt
    trunk/packages/vim-scripts/html/index.html
    trunk/packages/vim-scripts/html/plugin_NERD_commenter.vim.html
    trunk/packages/vim-scripts/plugin/NERD_commenter.vim

Modified: trunk/packages/vim-scripts/debian/changelog
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim-scripts/debian/changelog?rev=1286&op=diff
==============================================================================
--- trunk/packages/vim-scripts/debian/changelog (original)
+++ trunk/packages/vim-scripts/debian/changelog Fri Dec  5 16:17:51 2008
@@ -1,7 +1,7 @@
 vim-scripts (20081205-1) UNRELEASED; urgency=low
 
   * Updated addons:
-    - supertab
+    - supertab, NERD_commenter
 
  -- James Vega <jamessan at debian.org>  Fri, 05 Dec 2008 11:08:16 -0500
 

Modified: trunk/packages/vim-scripts/debian/vim-scripts.status
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim-scripts/debian/vim-scripts.status?rev=1286&op=diff
==============================================================================
--- trunk/packages/vim-scripts/debian/vim-scripts.status (original)
+++ trunk/packages/vim-scripts/debian/vim-scripts.status Fri Dec  5 16:17:51 2008
@@ -253,7 +253,7 @@
 license:     wtfpl [6], see below
 extras:      doc/NERD_commenter.txt
 disabledby:  let loaded_nerd_comments = 1
-version:     2.1.16
+version:     2.2.1
 
 script_name: plugin/project.vim
 addon:       project

Modified: trunk/packages/vim-scripts/doc/NERD_commenter.txt
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim-scripts/doc/NERD_commenter.txt?rev=1286&op=diff
==============================================================================
--- trunk/packages/vim-scripts/doc/NERD_commenter.txt (original)
+++ trunk/packages/vim-scripts/doc/NERD_commenter.txt Fri Dec  5 16:17:51 2008
@@ -23,11 +23,10 @@
             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.2.10 Insert comment map.........|NERDComInsertComment|
+            2.2.11 Use alternate delims map...|NERDComAltDelim|
+            2.2.12 Comment aligned maps.......|NERDComAlignedComment|
+            2.2.13 Uncomment line map.........|NERDComUncommentLine|
         2.3 Supported filetypes...............|NERDComFiletypes|
         2.4 Sexy Comments.....................|NERDComSexyComments|
         2.5 The NERDComment function..........|NERDComNERDComment|
@@ -35,24 +34,24 @@
         3.1 Options summary...................|NERDComOptionsSummary|
         3.2 Options details...................|NERDComOptionsDetails|
         3.3 Default delimiter Options.........|NERDComDefaultDelims|
-        3.4 Key mapping Options...............|NERDComMappings|
-    4.Issues with the script..................|NERDComIssues|
-        4.1 Delimiter detection heuristics....|NERDComHeuristics|
-        4.2 Nesting issues....................|NERDComNesting|
-    5.The author..............................|NERDComAuthor|
-    6.Changelog...............................|NERDComChangelog|
-    7.Credits.................................|NERDComCredits|
-    8.License.................................|NERDComLicense|
+    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|
 
 ==============================================================================
 1. Intro                                                       *NERDCommenter*
 
 The NERD commenter provides many different commenting operations and styles
-which may be invoked via key mappings and a commenting menu. These operations
-are available for most filetypes.
-
-There are also options available that allow you to tweak the commenting engine
-to you taste.
+which are invoked via key mappings and a menu. These operations are available
+for most filetypes.
+
+There are also options that allow to tweak the commenting engine to your
+taste.
 
 ==============================================================================
 2. Functionality provided                               *NERDComFunctionality*
@@ -61,17 +60,15 @@
 2.1 Functionality summary                        *NERDComFunctionalitySummary*
 
 The following key mappings are provided by default (there is also a menu
-provided that contains menu items corresponding to all the below mappings):
-
-Most of the following mappings are for normal/visual mode only. The
-|NERDComInsertComment| mapping is for insert mode only.
+with items corresponding to all the mappings below):
 
 [count],cc |NERDComComment|
-Comments out the current line or text selected in visual mode.
+Comment out the current line or text selected in visual mode.
 
 
 [count],cn |NERDComNestedComment|
-Same as |NERDComComment| but forces nesting.
+Same as ,cc but forces nesting.
+
 
 [count],c<space> |NERDComToggleComment|
 Toggles the comment state of the selected line(s). If the topmost selected
@@ -79,13 +76,11 @@
 
 
 [count],cm |NERDComMinimalComment|
-Comments the given lines using only one set of multipart delimiters if
-possible.
+Comments the given lines using only one set of multipart delimiters.
 
 
 [count],ci |NERDComInvertComment|
-Toggles the comment state of the selected line(s) individually. Each selected
-line that is commented is uncommented and vice versa.
+Toggles the comment state of the selected line(s) individually.
 
 
 [count],cs |NERDComSexyComment|
@@ -93,8 +88,7 @@
 
 
 [count],cy |NERDComYankComment|
-Same as |NERDComComment| except that the commented line(s) are yanked
-before commenting.
+Same as ,cc except that the commented line(s) are yanked first.
 
 
 ,c$ |NERDComEOLComment|
@@ -106,13 +100,9 @@
 them.
 
 
-,cI |NERDComPrependComment|
-Adds comment delimiters to the start of line and goes into insert mode between
-them.
-
-
-<C-c> |NERDComInsertComment|
+|NERDComInsertComment|
 Adds comment delimiters at the current cursor position and inserts between.
+Disabled by default.
 
 
 ,ca |NERDComAltDelim|
@@ -120,11 +110,9 @@
 
 
 [count],cl
-[count],cr
 [count],cb    |NERDComAlignedComment|
 Same as |NERDComComment| except that the delimiters are aligned down the
-left side (,cl), the right side (,cr) or both sides
-(,cb).
+left side (,cl) or both sides (,cb).
 
 
 [count],cu |NERDComUncommentLine|
@@ -137,7 +125,7 @@
 2.2.1 Comment map                                             *NERDComComment*
 
 Default mapping: [count],cc
-Change the mapping with: NERDComLineMap.
+Mapped to: <plug>NERDCommenterComment
 Applicable modes: normal visual visual-line visual-block.
 
 
@@ -153,13 +141,13 @@
 2.2.2 Nested comment map                                *NERDComNestedComment*
 
 Default mapping: [count],cn
-Change the mapping with: NERDComLineNestMap.
+Mapped to: <plug>NERDCommenterNest
 Applicable modes: normal visual visual-line visual-block.
 
-Performs nested commenting.  Works the same as ,cc except that if a
-line is already commented then it will be commented again.
-
-If |NERDUsePlaceHolders| is set then the previous comment delimiters will
+Performs nested commenting.  Works the same as ,cc except that if a line is
+already commented then it will be commented again.
+
+If |'NERDUsePlaceHolders'| is set then the previous comment delimiters will
 be replaced by place-holder delimiters if needed.  Otherwise the nested
 comment will only be added if the current commenting delimiters have no right
 delimiter (to avoid syntax errors)
@@ -168,13 +156,13 @@
 lines were selected in visual-line mode.
 
 Related options:
-|NERDDefaultNesting|
+|'NERDDefaultNesting'|
 
 ------------------------------------------------------------------------------
 2.2.3 Toggle comment map                                *NERDComToggleComment*
 
 Default mapping: [count],c<space>
-Change the mapping with: NERDComLineToggleMap.
+Mapped to: <plug>NERDCommenterToggle
 Applicable modes: normal visual-line.
 
 Toggles commenting of the lines selected. The behaviour of this mapping
@@ -191,18 +179,18 @@
 2.2.4 Minimal comment map                              *NERDComMinimalComment*
 
 Default mapping: [count],cm
-Change the mapping with: NERDComLineMinimalMap
+Mapped to: <plug>NERDCommenterMinimal
 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
-,cm then a '/*' will be placed at the start of the top line and a '*/'
-will be placed at the end of the last line.
+For example: if you are programming in c and you select 5 lines and press ,cm
+then a '/*' will be placed at the start of the top line and a '*/' 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
+selected lines are replaced with place holders (see |'NERDLPlace'|) if
+|'NERDUsePlaceHolders'| is set for the current filetype. If it is not, then
 the comment will be aborted if place holders are required to prevent illegal
 syntax.
 
@@ -213,7 +201,7 @@
 2.2.5 Invert comment map                                *NERDComInvertComment*
 
 Default mapping: ,ci
-Change the mapping with: NERDComLineInvertMap.
+Mapped to: <plug>NERDCommenterInvert
 Applicable modes: normal visual-line.
 
 Inverts the commented state of each selected line. If the a selected line is
@@ -230,7 +218,7 @@
 2.2.6 Sexy comment map                                    *NERDComSexyComment*
 
 Default mapping: [count],cs
-Change the mapping with: NERDComLineSexyMap
+Mapped to: <plug>NERDCommenterSexy
 Applicable modes: normal, visual-line.
 
 Comments the selected line(s) ``sexily''... see |NERDComSexyComments| for
@@ -244,13 +232,13 @@
 lines were selected in visual-line mode.
 
 Related options:
-|NERDCompactSexyComs|
+|'NERDCompactSexyComs'|
 
 ------------------------------------------------------------------------------
 2.2.7 Yank comment map                                    *NERDComYankComment*
 
 Default mapping: [count],cy
-Change the mapping with: NERDComLineYankMap
+Mapped to: <plug>NERDCommenterYank
 Applicable modes: normal visual visual-line visual-block.
 
 Same as ,cc except that it yanks the line(s) that are commented first.
@@ -259,7 +247,7 @@
 2.2.8 Comment to EOL map                                   *NERDComEOLComment*
 
 Default mapping: ,c$
-Change the mapping with: NERDComToEOLMap
+Mapped to: <plug>NERDCommenterToEOL
 Applicable modes: normal.
 
 Comments the current line from the current cursor position up to the end of
@@ -269,37 +257,33 @@
 2.2.9 Append com to line map                            *NERDComAppendComment*
 
 Default mapping: ,cA
-Change the mapping with: NERDAppendComMap.
+Mapped to: <plug>NERDCommenterAppend
 Applicable modes: normal.
 
 Appends comment delimiters to the end of the current line and goes
 to insert mode between the new delimiters.
 
 ------------------------------------------------------------------------------
-2.2.10 Prepend com to line map                         *NERDComPrependComment*
-
-Default mapping: ,cI
-Change the mapping with: NERDPrependComMap.
-Applicable modes: normal.
-
-Prepends comment delimiters to the start of the current line and goes to
-insert mode between the new delimiters.
-
-------------------------------------------------------------------------------
-2.2.11 Insert comment map                               *NERDComInsertComment*
-
-Default mapping: <C-c>
-Change the mapping with: NERDComInInsertMap.
+2.2.10 Insert comment map                               *NERDComInsertComment*
+
+Default mapping: disabled by default.
+Map it to: <plug>NERDCommenterInInsert
 Applicable modes: insert.
 
 Adds comment delimiters at the current cursor position and inserts
 between them.
 
-------------------------------------------------------------------------------
-2.2.12 Use alternate delims map                              *NERDComAltDelim*
+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.
+
+------------------------------------------------------------------------------
+2.2.11 Use alternate delims map                              *NERDComAltDelim*
 
 Default mapping: ,ca
-Change the mapping with: NERDAltComMap
+Mapped to: <plug>NERDCommenterAltDelims
 Applicable modes: normal.
 
 Changes to the alternative commenting style if one is available. For example,
@@ -309,25 +293,25 @@
 See also |NERDComDefaultDelims|
 
 ------------------------------------------------------------------------------
-2.2.13 Comment aligned maps                            *NERDComAlignedComment*
-
-Default mappings: [count],cl   [count],cr   [count],cb
-Change the mappings with: NERDComAlignLeftMap, NERDComAlignRightMap and
-NERDComAlignBothMap.
+2.2.12 Comment aligned maps                            *NERDComAlignedComment*
+
+Default mappings: [count],cl   [count],cb
+Mapped to: <plug>NERDCommenterAlignLeft
+           <plug>NERDCommenterAlignBoth
 Applicable modes: normal visual-line.
 
-Same as ,cc except that the comment delimiters are aligned on the left
-side, right side or both sides respectively. These comments are always nested
-if the line(s) are already commented.
+Same as ,cc except that the comment delimiters are aligned on the left side or
+both sides respectively. These comments are always nested if the line(s) are
+already commented.
 
 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*
+2.2.13 Uncomment line map                               *NERDComUncommentLine*
 
 Default mapping: [count],cu
-Change the mapping with: NERDUncomLineMap.
+Mapped to: <plug>NERDCommenterUncomment
 Applicable modes: normal visual visual-line visual-block.
 
 Uncomments the current line. If multiple lines are selected in
@@ -343,8 +327,8 @@
 lines were selected in visual-line mode.
 
 Related  options:
-|NERDRemoveAltComs|
-|NERDRemoveExtraSpaces|
+|'NERDRemoveAltComs'|
+|'NERDRemoveExtraSpaces'|
 
 ------------------------------------------------------------------------------
 2.3 Supported filetypes                                     *NERDComFiletypes*
@@ -393,8 +377,7 @@
      * So there!
      * But this one is ``compact'' style */
 <
-Here the multipart delimiters are /* and */ and the marker is *. The NERD
-commenter is capable of adding and removing comments of this type.
+Here the multipart delimiters are /* and */ and the marker is *.
 
 ------------------------------------------------------------------------------
 2.5 The NERDComment function                             *NERDComNERDComment*
@@ -410,9 +393,9 @@
       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
-      performed, and it can be one of the following: 'sexy', 'invert',
-      'minimal', 'toggle', 'alignLeft', 'alignRight', 'alignBoth', 'norm',
-      'nested', 'toEOL', 'prepend', 'append', 'insert', 'uncomment', 'yank'
+      performed, and it can be one of the following: "sexy", "invert",
+      "minimal", "toggle", "alignLeft", "alignBoth", "norm", "nested",
+      "toEOL", "append", "insert", "uncomment", "yank"
 
 For example, if you typed >
     :call NERDComment(1, 'sexy')
@@ -426,41 +409,40 @@
 ------------------------------------------------------------------------------
 3.1 Options summary                                    *NERDComOptionsSummary*
 
-|loaded_nerd_comments|                Turns off the script.
-|NERDAllowAnyVisualDelims|            Allows multipart alternative delims to
+|'loaded_nerd_comments'|              Turns off the script.
+|'NERDAllowAnyVisualDelims'|          Allows multipart alternative delims to
                                       be used when commenting in
                                       visual/visual-block mode.
-|NERDBlockComIgnoreEmpty|             Forces right delims to be placed when
+|'NERDBlockComIgnoreEmpty'|           Forces right delims to be placed when
                                       doing visual-block comments.
-|NERDCommentWholeLinesInVMode|        Changes behaviour of visual comments.
-|NERDDefaultNesting|                  Tells the script to use nested comments
+|'NERDCommentWholeLinesInVMode'|      Changes behaviour of visual comments.
+|'NERDCreateDefaultMappings'|         Turn the default mappings on/off.
+|'NERDDefaultNesting'|                Tells the script to use nested comments
                                       by default.
-|NERDMenuMode|                        Specifies how the NERD commenter menu
+|'NERDMenuMode'|                      Specifies how the NERD commenter menu
                                       will appear (if at all).
-|NERDLPlace|                          Specifies what to use as the left
+|'NERDLPlace'|                        Specifies what to use as the left
                                       delimiter placeholder when nesting
                                       comments.
-|NERDMapleader|                       Specifies what all the commenting key
-                                      mappings will begin with.
-|NERDUsePlaceHolders|                 Specifies which filetypes may use
+|'NERDUsePlaceHolders'|               Specifies which filetypes may use
                                       placeholders when nesting comments.
-|NERDRemoveAltComs|                   Tells the script whether to remove
+|'NERDRemoveAltComs'|                 Tells the script whether to remove
                                       alternative comment delimiters when
                                       uncommenting.
-|NERDRemoveExtraSpaces|               Tells the script to always remove the
+|'NERDRemoveExtraSpaces'|             Tells the script to always remove the
                                       extra spaces when uncommenting
                                       (regardless of whether NERDSpaceDelims
                                       is set)
-|NERDRPlace|                          Specifies what to use as the right
+|'NERDRPlace'|                        Specifies what to use as the right
                                       delimiter placeholder when nesting
                                       comments.
-|NERDShutUp|                          Stops "Unknown filetype" output from the
+|'NERDShutUp'|                        Stops "Unknown filetype" output from the
                                       script
-|NERDSpaceDelims|                     Specifies whether to add extra spaces
+|'NERDSpaceDelims'|                   Specifies whether to add extra spaces
                                       around delimiters when commenting, and
                                       whether to remove them when
                                       uncommenting.
-|NERDCompactSexyComs|                 Specifies whether to use the compact
+|'NERDCompactSexyComs'|               Specifies whether to use the compact
                                       style sexy comments.
 
 ------------------------------------------------------------------------------
@@ -469,13 +451,13 @@
 To enable any of the below options you should put the given line in your
 ~/.vimrc
 
-                                                       *loaded_nerd_comments*
+                                                       *'loaded_nerd_comments'*
 If this script is driving you insane you can turn it off by setting this
 option >
     let loaded_nerd_comments=1
 <
 ------------------------------------------------------------------------------
-                                                    *NERDAllowAnyVisualDelims*
+                                                    *'NERDAllowAnyVisualDelims'*
 Values: 0 or 1.
 Default: 1.
 
@@ -498,7 +480,7 @@
     System.out.println(foo * bar);        System.out.println(foo * bar);
 <
 ------------------------------------------------------------------------------
-                                                     *NERDBlockComIgnoreEmpty*
+                                                     *'NERDBlockComIgnoreEmpty'*
 Values: 0 or 1.
 Default: 1.
 
@@ -541,7 +523,7 @@
     /*}  */
 <
 ------------------------------------------------------------------------------
-                                                *NERDCommentWholeLinesInVMode*
+                                                *'NERDCommentWholeLinesInVMode'*
 Values: 0, 1 or 2.
 Default: 0.
 
@@ -579,15 +561,25 @@
     let NERDCommentWholeLinesInVMode=2
 <
 
-Note that this option does not affect the behaviour of |visual-block| mode.
-
-------------------------------------------------------------------------------
-                                                           *NERDRemoveAltComs*
+Note that this option does not affect the behaviour of commenting in
+|visual-block| mode.
+
+------------------------------------------------------------------------------
+                                                *'NERDCreateDefaultMappings'*
 Values: 0 or 1.
 Default: 1.
 
+If set to 0, none of the default mappings will be created.
+
+See also |NERDComMappings|.
+
+------------------------------------------------------------------------------
+                                                           *'NERDRemoveAltComs'*
+Values: 0 or 1.
+Default: 1.
+
 When uncommenting a line (for a filetype with an alternative commenting style)
-this option tells the script whether to look for, and remove, comments
+this option tells the script whether to look for, and remove, comment
 delimiters of the alternative style.
 
 For example, if you are editing a c++ file using // style comments and you go
@@ -597,13 +589,13 @@
 It will not be uncommented if the NERDRemoveAltComs is set to 0.
 
 ------------------------------------------------------------------------------
-                                                       *NERDRemoveExtraSpaces*
+                                                       *'NERDRemoveExtraSpaces'*
 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.
+1. |'NERDSpaceDelims'| is set to 1.
 2. NERDRemoveExtraSpaces is set to 1.
 
 This means that if we have the following lines in a c code file: >
@@ -622,12 +614,12 @@
      int bar = 10;
     int baz = foo + bar
 <
-If you want the spaces to be removed only if |NERDSpaceDelims| is set then
+If you want the spaces to be removed only if |'NERDSpaceDelims'| is set then
 set NERDRemoveExtraSpaces to 0.
 
 ------------------------------------------------------------------------------
-                                                                  *NERDLPlace*
-                                                                  *NERDRPlace*
+                                                                  *'NERDLPlace'*
+                                                                  *'NERDRPlace'*
 Values: arbitrary string.
 Default:
     NERDLPlace: "[>"
@@ -649,37 +641,7 @@
 When we uncomment this line it will go back to what it was.
 
 ------------------------------------------------------------------------------
-                                                               *NERDMapleader*
-Values: arbitrary string.
-Default: \c
-
-NERDMapleader is used to specify what all the NERD commenter key mappings
-begin with.
-
-The default key mappings will look like this: >
-    \cc
-    \cu
-    \ca
-    \ci
-    \cs
-    ...
-<
-However, if this line: >
-    let NERDMapleader = ',x'
-<
-were present in your vimrc then the default mappings would look like this: >
-    ,xc
-    ,xu
-    ,xa
-    ,xi
-    ,xs
-    ...
-<
-This option only affects the mappings that have not been explicitly set
-manually (see |NERDComMappings|).
-
-------------------------------------------------------------------------------
-                                                                *NERDMenuMode*
+                                                                *'NERDMenuMode'*
 Values: 0, 1, 2, 3.
 Default: 3
 
@@ -690,15 +652,15 @@
     "3": Turns the 'Plugin -> comment' menu on with <alt>-c as the shortcut.
 
 ------------------------------------------------------------------------------
-                                                         *NERDUsePlaceHolders*
+                                                         *'NERDUsePlaceHolders'*
 Values: 0 or 1.
 Default 1.
 
 This option is used to specify whether place-holder delimiters should be used
-when adding nested comments.
-
-------------------------------------------------------------------------------
-                                                                  *NERDShutUp*
+when creating a nested comment.
+
+------------------------------------------------------------------------------
+                                                                  *'NERDShutUp'*
 Values: 0 or 1.
 Default 1.
 
@@ -707,7 +669,7 @@
     let NERDShutUp=1
 <
 ------------------------------------------------------------------------------
-                                                             *NERDSpaceDelims*
+                                                             *'NERDSpaceDelims'*
 Values: 0 or 1.
 Default 0.
 
@@ -720,10 +682,10 @@
 <
 If you want spaces to be added then set NERDSpaceDelims to 1 in your vimrc.
 
-See also |NERDRemoveExtraSpaces|.
-
-------------------------------------------------------------------------------
-                                                         *NERDCompactSexyComs*
+See also |'NERDRemoveExtraSpaces'|.
+
+------------------------------------------------------------------------------
+                                                         *'NERDCompactSexyComs'*
 Values: 0 or 1.
 Default 0.
 
@@ -742,20 +704,19 @@
 If this option is set to 1 then the top style will be used.
 
 ------------------------------------------------------------------------------
-                                                          *NERDDefaultNesting*
+                                                          *'NERDDefaultNesting'*
 Values: 0 or 1.
 Default 1.
 
 When this option is set to 1, comments are nested automatically. That is, if
-you hit ,cc on a line that is already commented it will be commented
-again
+you hit ,cc on a line that is already commented it will be commented 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: >
-    let NERD_<&filetype>_alt_style=1
+    let NERD_<filetype>_alt_style=1
 <
 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: >
@@ -764,42 +725,27 @@
 
 See |NERDComAltDelim| for switching commenting styles at runtime.
 
-------------------------------------------------------------------------------
-3.4 Key mapping customisation                                *NERDComMappings*
-
-These options are used to override the default keys that are used for the
-commenting mappings. Their values must be set to strings. As an example: if
-you wanted to use the mapping ,foo to uncomment lines of code then
-you would place this line in your vimrc >
-    let NERDUncomLineMap=",foo"
-<
-Check out |NERDComFunctionality| for details about what the following
-mappings do.
-
-Default Mapping     Option to override~
-
-,ca                 NERDAltComMap
-,ce                 NERDAppendComMap
-,cl                 NERDComAlignLeftMap
-,cb                 NERDComAlignBothMap
-,cr                 NERDComAlignRightMap
-<C-c>               NERDComInInsertMap
-,ci                 NERDComLineInvertMap
-,cc                 NERDComLineMap
-,cn                 NERDComLineNestMap
-,cs                 NERDComLineSexyMap
-,c<space>           NERDComLineToggleMap
-,cm                 NERDComLineMinimalMap
-,c$                 NERDComToEOLMap
-,cy                 NERDComLineYankMap
-,cu                 NERDUncomLineMap
-
 ==============================================================================
-4. Issues with the script                                      *NERDComIssues*
-
-
-------------------------------------------------------------------------------
-4.1 Delimiter detection heuristics                         *NERDComHeuristics*
+4. Key mapping customisation                                *NERDComMappings*
+
+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
+this line in your vimrc: >
+    map ,omg <plug>NERDCommenterComment
+<
+This will stop the corresponding default mappings from being created.
+
+See the help for the mapping in question to see which <plug> mapping to
+map to.
+
+See also |'NERDCreateDefaultMappings'|.
+
+==============================================================================
+5. Issues with the script                                      *NERDComIssues*
+
+
+------------------------------------------------------------------------------
+5.1 Delimiter detection heuristics                         *NERDComHeuristics*
 
 Heuristics are used to distinguish the real comment delimiters
 
@@ -819,7 +765,7 @@
 cases.
 
 ------------------------------------------------------------------------------
-4.2 Nesting issues                                            *NERDComNesting*
+5.2 Nesting issues                                            *NERDComNesting*
 
 If we have some line of code like this: >
     /*int foo */ = /*5 + 9;*/
@@ -839,7 +785,7 @@
 for simplicity)
 
 ==============================================================================
-5. The author                                                  *NERDComAuthor*
+6. The author                                                  *NERDComAuthor*
 
 The author of the NERD commenter is Martyzillatron --- the half robot, half
 dinosaur bastard son of Megatron and Godzilla. He enjoys destroying
@@ -850,223 +796,50 @@
 if your face looked like a toaster and a t-rex put together? :(
 
 ==============================================================================
-7. Changelog                                                *NERDComChangelog*
-
-2.1.16
-    - compatibility fix for vim7.2, cheers to Ben Schmidt, David Fishburn, and
-      Erik Falor for the emails, and to JaGoTerr for posting the issue.
-2.1.15
-    - added pamconf support, thanks to Martin Kustermann
-    - added mason support, thanks to Indriði Einarsson
-    - added map support, thanks to Chris
-    - added bzr support, thanks to Stromnov
-    - added group support, thanks to Krzysztof A. Adamski
-    - change license to wtfpl
-
-2.1.14
-    - added support for gitconfig, tar, nerdtree
-    - added support for dtrace, thanks to nicothakis for the post
-2.1.13
-    - added support for rib, pyrex/cython, liquid, services, gitcommit,
-      vimperator, and slice. Thanks to spookypeanut, Greg Jandl, Christophe
-      Benz, A Pontus, and Stromnov for emailing me and/or posting issues.
-    - set the NERDRemoveExtraSpaces option to 1 by default as the doc states
-    - other fixes: (thanks to Zhang Shuhan for all his emails and testing)
-        * made the sexy comment mapping fall back to normal commenting if sexy
-          comments arent possible for the current filetype
-        * fixed some bugs with sexy comments
-        * made the uncommenting side of toggle comments slightly more robust
-        * fixed a bug where some extra spaces werent being removed (although
-          the currect options were set)
-2.1.12
-    - added support for patran and dakota, thx to Jacobo Diaz for the email
-    - added support for gentoo-env-d, gentoo-init-d, gentoo-make-conf, grub,
-      modconf and sudoers filetypes, thx to Li Jin for the patch.
-    - added support for SVNdiff, gitAnnotate, gitdiff. Thx to nicothakis for
-      posting the issue
-
-2.1.11
-    - fixed a bug with the selection option and visual commenting (again).
-      Thanks to Ingo Karkat (again).
-
-2.1.10
-    - added support for Wikipedia (thanks to Chen Xing)
-    - added support for mplayerconf
-    - bugfixes (thanks to Ingo Karkat for the bug report/patch)
-    - added support for mkd (thanks to Stefano Zacchiroli)
-
-2.1.9
-    - added support for mrxvtrc and aap, thx to Marco for the emails
-    - added dummy support for SVNAnnotate, SVKAnnotate and CVSAnnotate, thx to
-      nicothakis for posting the issue
-
-2.1.8
-    - fixed a couple of bugs with the NERDSpaceDelims option, thx to
-      David Miani and Jeremy Hinegardner
-    - added dummy support for lhaskell, thx to pipp for posting the issue
-    - added an alternative set of delims for the plsql filetype, thx to Kuchma
-      Michael
-    - added support for spectre, thx to Brett Warneke
-    - added support for scala, thx to Renald Buter
-    - added support for asymptote, thx to Vladimir Lomov
-    - made NERDDefaultNesting enabled by default as this seems more intuitive,
-      thx to marco for the suggestion
-
-
-2.1.7
-    - added support for haml, thx to Greb Weber
-    - added support for asterisk, thx to Laurent ARNOUD
-    - added support for objcpp, thx to Nicolas Weber
-    - added support for the factor filetype, thx to Aaron Schaefer
-    - fixed a bug with the passwd filetype setup, thx to Yongwei Wu
-    - fixed a bug that was forcing filetypes with an alternative set of delims
-      to have at least one multipart set.
-    - split out the help file out from the script and repackaged everything as
-      a zip
-
-2.1.6
-    - added support for gentoo-conf-d thanks to tinoucas for posting the issue
-      and the patch
-    - added support for the D filetype. Thanks to Greg Weber for the email.
-    - added dummy support for cobol, cheers to timberke for posting the issue.
-    - added support for velocity. Thanks to Bruce Sherrod for the email.
-
-2.1.5
-    - added support for lilypond, bbx and lytex. Thanks to Eyolf Østrem for
-      the email.
-    - added an alterative set of delimiters for the dosbatch filetype, thanks
-      to Ingo Karkat for the email.
-    - added support for the markdown filetype. Thanks to Nicolas Weber for the
-      posting the issue.
-
-2.1.4
-    - added support for the ahk filetype. Cheers to Don Hatlestad for the
-      email.
-    - added support for desktop and xsd filetypes. Thanks to Christophe Benz.
-    - added dummy support for Rails-log
-    - fixed a bunch of bugs in the comment delimiter setup process, thanks to
-      Cheng Fang for the email :D
-    - hardcore refactoring and removal of seldomly used, overly-complex
-      functionality.
-    - the script now requires vim 7
-2.1.3
-    - fixed numerous bugs that were causing tabs to permanently be converted
-      to spaces, even if noexpandtab was set. Thanks to Heptite on #vim for
-      working with me to track them down :)
-    - added dummy support for "lookupfile". Thanks to David Fishburn for the
-      email.
-    - added support for "rst", thanks to Niels Aan de Brugh for the email.
-
-2.1.2
-    - added support for the vera and ldif filetypes. Thanks to Normandie
-      Azucena and Florian Apolloner for the emails.
-
-2.1.1
-    - added dummy support for SVNcommitlog and vcscommit. Thanks to John
-      O'Shea for the email.
-    - added support for Groovy. Thanks to Jason Mills for the email.
-2.1.0
-    - now the script resets the delimiters when the filetype of the buffer
-      changes (thanks to James Hales for the patch)
-    - added formal support/doc for prepending a count to many of the
-      commenting maps so you can go, eg, 5,cc to comment 5 lines from normal
-      mode. Thanks again to James Hales for the patch.
-    - added support for the "gams" filetype that Jorge Rodrigues created.
-    - added support for the "objc" filetype, thanks to Rainer Müller for the
-      email.
-    - added support for the "sass" filetype that Dmitry Ilyashevich created.
-
-2.0.7
-    - Added support for eclass and ebuild filetypes. Thanks to Alex Tarkovsky
-      for the email.
-
-2.0.6
-    - Changed the default setting of NERDMapleader to ",c", meaning all the
-      maps now start with ,c instead of \c. This is to stop a major mapping
-      clash with the vcscommand plugin. Anyone wanting to keep the \c map
-      leader should read :help NERDMapleader.
-    - Added support for debcontrol and dummy support for debchangelog
-      filetypes, thanks to Stefano Zacchiroli for the email.
-    - Made it so that the NERDShutUp option now only controls the "Pleeease
-      email the delimiters..." requests. It no longer affects the general
-      output of the script.
-    - Simplified the names of the help tags.
-
-2.0.5
-    - Added support for autoit, autohotkey and docbk filetypes (thanks to
-      Michael Böhler)
-    - Added support for cmake (thanks to Aaron Small)
-    - Added support for htmldjango and django filetypes (thanks to Ramiro
-      Morales)
-    - Improved the delimiters for eruby again
-    - Applied a patch from Seth Mason to fix some pathing issues with the help
-      file installation.
-
-2.0.4
-    - Added support for verilog_systemverilog and systemverilog filetypes
-      (Thanks to Alexey for the email)
-    - Added support for fstab, thanks to Lizendir for the email.
-    - Added support for the smarty filetype.
-    - Improved the delimiters for eruby.
-    - Added dummy support for changelog filetype.
-
-2.0.3
-    - Added dummy support for the csv filetype (thx to Mark Woodward for the
-      email)
-    - Added dummy support for vo_base and otl filetypes (thanks to fREW for
-      the email)
-
-2.0.2:
-    - Minor bug fix that was stopping nested comments from working
-
-2.0.1:
-    - Fixed the visual bell for the |NERDComToEOLMap| map.
-    - Added another possible value to the NERDMenuMode option which causes the
-      menu to be displayed under 'Plugin -> Comment'. See :h NERDMenuMode.
-      This new menu mode is now the default.
-    - Added support for the occam filetype (thanks to Anders for emailing me)
-    - Made the main commenting function (NERDComment) available outside the
-      script.
-    - bug fixes and refactoring
-
-2.0.0:
-    - NOTE: renamed the script to  NERD_commenter.vim. When you install this
-      version you must delete the old files: NERD_comments.vim and
-      NERD_comments.txt.
-    - Reworked the mappings and main entry point function for the script to
-      avoid causing visual-bells and screen scrolling.
-    - Changes to the script options (see |NERD_com-Customisation| for
-      details):
-        - They are all camel case now instead of underscored.
-        - Converted all of the regular expression options into simple boolean
-          options for simplicity.
-        - All the options are now stated positively, eg.
-          NERD_dont_remove_spaces_regexp has become NERDRemoveExtraSpaces.
-        - Some of the option names have been changed (other than in the above
-          ways)
-        - Some have been removed altogether, namely: NERD_create_h_filetype
-          (why was a commenting script creating a filetype?!),
-          NERD_left_align_regexp, NERD_right_align_regexp,
-
-    - Removed all the NERD_use_alt_style_XXX_coms options and replaced them
-      with a better system. Now if a filetype has alternative delims, the
-      script will check whether an option of the form
-      "NERD_<&filetype>_alt_style" exists, and if it does then alt delims will
-      be used. See |NERD_com-cust-delims| for details.
-    - The script no longer removes extra spaces for sexy comments for the
-      NERDRemoveExtraSpaces option (it will still remove spaces if
-      NERDSpaceDelims is set).
-    - Added dummy support for viminfo and rtf.
-    - Added support for the "gentoo-package-\(keywords\|mask\|use\)"
-      filetypes.
-    - Added '#' comments as an alternative for the asm filetype
-
-    Thanks to Markus Klinik and Anders for bug reports, and again to Anders
-    for his patch. Thanks to John O'Shea and fREW for the filetype
-    information.
+8. Changelog                                                *NERDComChangelog*
+
+2.2.1
+    - add support for newlisp and clojure, thanks to Matthew Lee Hinman.
+    - fix automake comments, thanks to Elias Pipping
+    - make haml comments default to -# with / as the alternative delimiter,
+      thanks to tpope
+    - add support for actionscript and processing thanks to Edwin Benavides
+    - add support for ps1 (powershell), thanks to Jason Mills
+    - add support for hostsaccess, thanks to Thomas Rowe
+    - add support for CVScommit
+    - add support for asciidoc, git and gitrebase. Thanks to Simon Ruderich.
+    - use # for gitcommit comments, thanks to Simon Ruderich.
+    - add support for mako and genshi, thanks to Keitheis.
+    - add support for conkyrc, thanks to David
+    - add support for SVNannotate, thanks to Miguel Jaque Barbero.
+    - add support for sieve, thanks to Stefan Walk
+    - add support for objj, thanks to Adam Thorsen.
+
+2.2.0
+    - rewrote the mappings system to be more "standard".
+      - removed all the mapping options. Now, mappings to <plug> mappings are
+        used
+      - see :help NERDComMappings, and :help NERDCreateDefaultMappings for
+        more info
+    - remove "prepend comments" and "right aligned comments".
+    - add support for applescript, calbire, man, SVNcommit, potwiki, txt2tags and SVNinfo.
+      Thanks to nicothakis, timberke, sgronblo, mntnoe, Bernhard Grotz, John
+      O'Shea, François and Giacomo Mariani respectively.
+    - bugfix for haskell delimiters. Thanks to mntnoe.
+2.1.18
+    - add support for llvm. Thanks to nicothakis.
+    - add support for xquery. Thanks to Phillip Kovalev.
+2.1.17
+    - fixed haskell delimiters (hackily). Thanks to Elias Pipping.
+    - add support for mailcap. Thanks to Pascal Brueckner.
+    - 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
+    - disable the insert mode ctrl-c mapping by default, see :help
+      NERDComInsertComment if you wish to restore it
 
 ==============================================================================
-7. Credits                                                    *NERDComCredits*
+8. Credits                                                    *NERDComCredits*
 
 Thanks and respect to the following people:
 
@@ -1194,6 +967,12 @@
 
 Thanks to Ben Schmidt, David Fishburn, and Erik Falor for emailing me about an
 incompatibility with vim7.2. Thanks also to JaGoTerr for posting the issue.
+
+Thanks to Elias Pipping for sending me a bug report about haskell commenting.
+
+Thanks to mntnoe for pointing out incorrect delimiters for haskell.
+
+Thanks to Mark S. for pointing out a bug in the doc.
 
 Not to forget! Thanks to the following people for sending me new filetypes to
 support :D
@@ -1206,7 +985,7 @@
 Antono Vasiljev                     netdict
 Melissa Reid                        omlet
 Ilia N Ternovich                    quickfix
-John O'Shea                         RTF, SVNcommitlog and vcscommit
+John O'Shea                         RTF, SVNcommitlog and vcscommit, SVNCommit
 Anders                              occam
 Mark Woodward                       csv
 fREW                                gentoo-package-mask,
@@ -1221,7 +1000,7 @@
 Alex Tarkovsky                      ebuild and eclass
 Jorge Rodrigues                     gams
 Rainer Müller                       Objective C
-Jason Mills                         Groovy
+Jason Mills                         Groovy, ps1
 Normandie Azucena                   vera
 Florian Apolloner                   ldif
 David Fishburn                      lookupfile
@@ -1234,9 +1013,9 @@
 tinoucas                            gentoo-conf-d
 Greg Weber                          D, haml
 Bruce Sherrod                       velocity
-timberke                            cobol
+timberke                            cobol, calibre
 Aaron Schaefer                      factor
-Laurent ARNOUD                      asterisk, mplayerconf
+Mr X                                asterisk, mplayerconf
 Kuchma Michael                      plsql
 Brett Warneke                       spectre
 Pipp                                lhaskell
@@ -1245,6 +1024,7 @@
 Marco                               mrxvtrc, aap
 nicothakis                          SVNAnnotate, CVSAnnotate, SVKAnnotate,
                                     SVNdiff, gitAnnotate, gitdiff, dtrace
+                                    llvm, applescript
 Chen Xing                           Wikipedia
 Jacobo Diaz                         dakota, patran
 Li Jin                              gentoo-env-d, gentoo-init-d,
@@ -1258,9 +1038,26 @@
 Indriði Einarsson                   mason
 Chris                               map
 Krzysztof A. Adamski                group
+Pascal Brueckner                    mailcap
+Jerónimo Carballo                   stata
+Phillip Kovalev                     xquery
+Bernhard Grotz                      potwiki
+sgronblo                            man
+François                            txt2tags
+Giacomo Mariani                     SVNinfo
+Matthew Lee Hinman                  newlisp, clojure
+Elias Pipping                       automake
+Edwin Benavides                     actionscript, processing
+Thomas Rowe                         hostsaccess
+Simon Ruderich                      asciidoc, git, gitcommit, gitrebase
+Keitheis                            mako, genshi
+David                               conkyrc
+Miguel Jaque Barbero                SVNannotate
+Stefan Walk                         sieve
+Adam Thorsen                        objj
 
 ==============================================================================
-8. License                                                    *NERDComLicense*
+9. License                                                    *NERDComLicense*
 
 The NERD commenter is released under the wtfpl.
 See http://sam.zoy.org/wtfpl/COPYING.

Modified: trunk/packages/vim-scripts/html/index.html
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim-scripts/html/index.html?rev=1286&op=diff
==============================================================================
--- trunk/packages/vim-scripts/html/index.html (original)
+++ trunk/packages/vim-scripts/html/index.html Fri Dec  5 16:17:51 2008
@@ -51,7 +51,7 @@
    <li><a href="syntax_mkd.vim.html">syntax/mkd.vim.html</a></li>
   </ul>
   <p>
-  Page generated on Fri, 05 Dec 2008 11:08:07 -0500
+  Page generated on Fri, 05 Dec 2008 11:15:40 -0500
 .
   </p>
  </body>

Modified: trunk/packages/vim-scripts/html/plugin_NERD_commenter.vim.html
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim-scripts/html/plugin_NERD_commenter.vim.html?rev=1286&op=diff
==============================================================================
--- trunk/packages/vim-scripts/html/plugin_NERD_commenter.vim.html (original)
+++ trunk/packages/vim-scripts/html/plugin_NERD_commenter.vim.html Fri Dec  5 16:17:51 2008
@@ -153,8 +153,8 @@
 <tr>
   <td class="lightbg"><b>&nbsp;script karma&nbsp;</b></td>
   <td>
-    Rating <b>741/244</b>,
-    Downloaded by 11308  </td>
+    Rating <b>852/279</b>,
+    Downloaded by 13431  </td>
 </tr>
 </table>
 <p>
@@ -167,7 +167,7 @@
 <tr><td>utility</td></tr>
 <tr><td>&nbsp;</td></tr>
 <tr><td class="prompt">description</td></tr>
-<tr><td>NOTE: As of version 2.1.4 the script requires vim7.
<br>
<br>Issue tracker: <a target="_blank" href="http://code.google.com/p/nerdcommenter/issues/list">http://code.google.com/p/nerdcommenter/issues/list</A>
<br>
<br>The following key mappings are provided by default (there is also a menu
<br>provided that contains menu items corresponding to all the below mappings):
<br>
<br>Most of the following mappings are for normal/visual mode only. The
<br>|NERDComInsertComment| mapping is for insert mode only.
<br>
<br>,cc |NERDComComment| 
<br>Comments out the current line or text selected in visual mode.
<br>
<br>,cn |NERDComNestedComment| 
<br>Same as |NERDComComment| but forces nesting.
<br>
<br>,c&lt;space&gt; |NERDComToggleComment| 
<br>Toggles the comment state of the selected line(s). If the topmost selected
<br>line is commented, all selected lines are uncommented and vice versa.
<br>
<br>,cm |NERDComMinimalComment| 
<br>Comments the given lines using only one set of multipart delimiters if
<br>possible. 
<br>
<br>,ci |NERDComInvertComment| 
<br>Toggles the comment state of the selected line(s) individually. Each selected
<br>line that is commented is uncommented and vice versa.
<br>
<br>,cs |NERDComSexyComment| 
<br>Comments out the selected lines ``sexily''
<br>
<br>,cy |NERDComYankComment|
<br>Same as |NERDComComment| except that the commented line(s) are yanked
<br>before commenting.
<br>
<br>,c$ |NERDComEOLComment| 
<br>Comments the current line from the cursor to the end of line.
<br>
<br>,cA |NERDComAppendComment| 
<br>Adds comment delimiters to the end of line and goes into insert mode between
<br>them.
<br>
<br>,cI |NERDComPrependComment| 
<br>Adds comment delimiters to the start of line and goes into insert mode between
<br>them.
<br>
<br>&lt;C-c&gt; |NERDComInsertComment| 
<br>Adds comment delimiters at the current cursor position and inserts between.
<br>
<br>,ca |NERDComAltDelim| 
<br>Switches to the alternative set of delimiters.
<br>
<br>,cl OR ,cr OR ,cb |NERDComAlignedComment| 
<br>Same as |NERDComComment| except that the delimiters are aligned down the
<br>left side (,cl), the right side (,cr) or both sides
<br>(,cb).
<br>
<br>,cu |NERDComUncommentLine| 
<br>Uncomments the selected line(s).
<br>
<br>Filetypes that can be commented by this plugin:
<br>abaqus abc acedb ada ahdl amiga aml ampl ant apache apachestyle asm68k asm asn
<br>aspvbs atlas autohotkey autoit automake ave awk basic b bc bdf bib bindzone bst
<br>btm caos catalog c cfg cg ch changelog cl clean clipper cmake conf config
<br>context cpp crontab cs csc csp css cterm cupl csv cvs dcl debchangelog
<br>debcontrol debsources def diff django docbk dns dosbatch dosini dot dracula dsl
<br>dtd dtml dylan ecd eiffel elf elmfilt erlang eruby eterm expect exports
<br>fetchmail fgl focexec form fortran foxpro fstab fvwm fx gdb gdmo geek
<br>gentoo-package-keywords' gentoo-package-mask' gentoo-package-use' gnuplot gtkrc
<br>haskell hb h help hercules hog html htmldjango htmlos ia64 icon idlang idl
<br>indent inform inittab ishd iss ist jam java javascript jess jgraph jproperties
<br>jproperties jsp kconfig kix kscript lace lex lftp lifelines lilo lisp lite
<br>lotos lout lprolog lscript lss lua lynx m4 mail make maple masm master matlab
<br>mel mf mib mma model moduala.&nbsp;&nbsp;modula2 modula3 monk mush muttrc named nasm
<br>nastran natural ncf netdict netrw nqc nroff nsis ocaml occam omlet omnimark
<br>openroad opl ora otl ox pascal passwd pcap pccts perl pfmain php phtml pic pike
<br>pilrc pine plaintex plm plsql po postscr pov povini ppd ppwiz procmail progress
<br>prolog psf ptcap python python qf radiance ratpoison r rc readline rebol
<br>registry remind rexx robots rpl rtf ruby sa samba sas sather scheme scilab
<br>screen scsh sdl sed selectbuf sgml sgmldecl sgmllnx sicad simula sinda skill
<br>slang sl slrnrc sm smarty smil smith sml snnsnet snnspat snnsres snobol4 spec
<br>specman spice sql sqlforms sqlj sqr squid st stp strace svn systemverilog tads
<br>taglist tags tak tasm tcl terminfo tex text plaintex texinfo texmf tf tidy tli
<br>trasys tsalt tsscl tssgm uc uil vb verilog verilog_systemverilog vgrindefs vhdl
<br>vim viminfo virata vo_base vrml vsejcl webmacro wget winbatch wml [^w]*sh
<br>wvdial xdefaults xf86conf xhtml xkb xmath xml xmodmap xpm2 xpm xslt yacc yaml
<br>z8a 
<br></td></tr>
+<tr><td>NOTE: As of version 2.1.4 the script requires vim7.
<br>
<br>Issue tracker: <a target="_blank" href="http://code.google.com/p/nerdcommenter/issues/list">http://code.google.com/p/nerdcommenter/issues/list</A>
<br>
<br>The following key mappings are provided by default (there is also a menu
<br>provided that contains menu items corresponding to all the below mappings):
<br>
<br>Most of the following mappings are for normal/visual mode only. The
<br>|NERDComInsertComment| mapping is for insert mode only.
<br>
<br>,cc |NERDComComment| 
<br>Comments out the current line or text selected in visual mode.
<br>
<br>,cn |NERDComNestedComment| 
<br>Same as |NERDComComment| but forces nesting.
<br>
<br>,c&lt;space&gt; |NERDComToggleComment| 
<br>Toggles the comment state of the selected line(s). If the topmost selected
<br>line is commented, all selected lines are uncommented and vice versa.
<br>
<br>,cm |NERDComMinimalComment| 
<br>Comments the given lines using only one set of multipart delimiters if
<br>possible. 
<br>
<br>,ci |NERDComInvertComment| 
<br>Toggles the comment state of the selected line(s) individually. Each selected
<br>line that is commented is uncommented and vice versa.
<br>
<br>,cs |NERDComSexyComment| 
<br>Comments out the selected lines ``sexily''
<br>
<br>,cy |NERDComYankComment|
<br>Same as |NERDComComment| except that the commented line(s) are yanked
<br>before commenting.
<br>
<br>,c$ |NERDComEOLComment| 
<br>Comments the current line from the cursor to the end of line.
<br>
<br>,cA |NERDComAppendComment| 
<br>Adds comment delimiters to the end of line and goes into insert mode between
<br>them.
<br>
<br>,cI |NERDComPrependComment| 
<br>Adds comment delimiters to the start of line and goes into insert mode between
<br>them.
<br>
<br>|NERDComInsertComment| 
<br>Adds comment delimiters at the current cursor position and inserts between.
<br>Disabled by default.
<br>
<br>,ca |NERDComAltDelim| 
<br>Switches to the alternative set of delimiters.
<br>
<br>,cl OR ,cr OR ,cb |NERDComAlignedComment| 
<br>Same as |NERDComComment| except that the delimiters are aligned down the
<br>left side (,cl), the right side (,cr) or both sides
<br>(,cb).
<br>
<br>,cu |NERDComUncommentLine| 
<br>Uncomments the selected line(s).
<br>
<br>Filetypes that can be commented by this plugin:
<br>abaqus abc acedb ada ahdl amiga aml ampl ant apache apachestyle asm68k asm asn
<br>aspvbs atlas autohotkey autoit automake ave awk basic b bc bdf bib bindzone bst
<br>btm caos catalog c cfg cg ch changelog cl clean clipper cmake conf config
<br>context cpp crontab cs csc csp css cterm cupl csv cvs dcl debchangelog
<br>debcontrol debsources def diff django docbk dns dosbatch dosini dot dracula dsl
<br>dtd dtml dylan ecd eiffel elf elmfilt erlang eruby eterm expect exports
<br>fetchmail fgl focexec form fortran foxpro fstab fvwm fx gdb gdmo geek
<br>gentoo-package-keywords' gentoo-package-mask' gentoo-package-use' gnuplot gtkrc
<br>haskell hb h help hercules hog html htmldjango htmlos ia64 icon idlang idl
<br>indent inform inittab ishd iss ist jam java javascript jess jgraph jproperties
<br>jproperties jsp kconfig kix kscript lace lex lftp lifelines lilo lisp lite
<br>lotos lout lprolog lscript lss lua lynx m4 mail make maple masm master matlab
<br>mel mf mib mma model moduala.&nbsp;&nbsp;modula2 modula3 monk mush muttrc named nasm
<br>nastran natural ncf netdict netrw nqc nroff nsis ocaml occam omlet omnimark
<br>openroad opl ora otl ox pascal passwd pcap pccts perl pfmain php phtml pic pike
<br>pilrc pine plaintex plm plsql po postscr pov povini ppd ppwiz procmail progress
<br>prolog psf ptcap python python qf radiance ratpoison r rc readline rebol
<br>registry remind rexx robots rpl rtf ruby sa samba sas sather scheme scilab
<br>screen scsh sdl sed selectbuf sgml sgmldecl sgmllnx sicad simula sinda skill
<br>slang sl slrnrc sm smarty smil smith sml snnsnet snnspat snnsres snobol4 spec
<br>specman spice sql sqlforms sqlj sqr squid st stp strace svn systemverilog tads
<br>taglist tags tak tasm tcl terminfo tex text plaintex texinfo texmf tf tidy tli
<br>trasys tsalt tsscl tssgm uc uil vb verilog verilog_systemverilog vgrindefs vhdl
<br>vim viminfo virata vo_base vrml vsejcl webmacro wget winbatch wml [^w]*sh
<br>wvdial xdefaults xf86conf xhtml xkb xmath xml xmodmap xpm2 xpm xslt yacc yaml
<br>z8a 
<br></td></tr>
 <tr><td>&nbsp;</td></tr>
 <tr><td class="prompt">install details</td></tr>
 <tr><td>***NOTE***: In version 2.0.0 the script file and help file were renamed to NERD_commenter.vim and NERD_commenter.txt. 
<br>If you are upgrading from version &lt; 2.0.0 to version &gt;= 2.0.0 then you must delete the old files NERD_comments.vim and
<br>NERD_comments.txt.
<br>
<br>Stick the NERD_comments.vim in ~/.vim/plugin and NERD_comments.txt in ~/.vim/doc. 
<br>
<br>Run :helptags ~/.vim/doc.
<br>
<br>Restart vim.
<br>
<br>Go :help NERD_commenter.txt to read the help file.</td></tr>
@@ -204,772 +204,796 @@
     <th valign="top">release notes</th>
 </tr>
 <tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=8860">NERD_commenter.zip</a></td>
-    <td class="rowodd" valign="top" nowrap><b>2.1.16</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2008-06-26</i></td>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=9497">NERD_commenter.zip</a></td>
+    <td class="rowodd" valign="top" nowrap><b>2.2.1</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2008-11-13</i></td>
     <td class="rowodd" valign="top" nowrap>7.0</td>
     <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">compatibility fix for vim7.2, cheers to Ben Schmidt, David Fishburn, and
<br>Erik Falor for the emails, and to JaGoTerr for posting the issue.
<br></td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=8833">NERD_commenter.zip</a></td>
-    <td class="roweven" valign="top" nowrap><b>2.1.15</b></td>
-    <td class="roweven" valign="top" nowrap><i>2008-06-21</i></td>
+    <td class="rowodd" valign="top" width="2000">- add support for newlisp and clojure, thanks to Matthew Lee Hinman.
<br>- fix automake comments, thanks to Elias Pipping
<br>- make haml comments default to -# with / as the alternative delimiter,
<br>&nbsp;&nbsp;thanks to tpope
<br>- add support for actionscript and processing thanks to Edwin Benavides
<br>- add support for ps1 (powershell), thanks to Jason Mills
<br>- add support for hostsaccess, thanks to Thomas Rowe
<br>- add support for CVScommit
<br>- add support for asciidoc, git and gitrebase. Thanks to Simon Ruderich.
<br>- use # for gitcommit comments, thanks to Simon Ruderich.
<br>- add support for mako and genshi, thanks to Keitheis.
<br>- add support for conkyrc, thanks to David
<br>- add support for SVNannotate, thanks to Miguel Jaque Barbero.
<br>- add support for sieve, thanks to Stefan Walk
<br>- add support for objj, thanks to Adam Thorsen.
<br></td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=9303">NERD_commenter.zip</a></td>
+    <td class="roweven" valign="top" nowrap><b>2.2.0</b></td>
+    <td class="roweven" valign="top" nowrap><i>2008-10-03</i></td>
     <td class="roweven" valign="top" nowrap>7.0</td>
     <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">- added pamconf support, thanks to Martin Kustermann
<br>- added mason support, thanks to Indriði Einarsson
<br>- added map support, thanks to Chris
<br>- added bzr support, thanks to Stromnov
<br>- added group support, thanks to Krzysztof A. Adamski
<br>- change license to wtfpl
<br></td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=8700">NERD_commenter.zip</a></td>
-    <td class="rowodd" valign="top" nowrap><b>2.1.14</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2008-05-16</i></td>
+    <td class="roweven" valign="top" width="2000">- rewrote the mappings system to be more &quot;standard&quot;.
<br>&nbsp;&nbsp;- removed all the mapping options. Now, mappings to &lt;plug&gt;
<br>&nbsp;&nbsp;&nbsp;&nbsp;mappings are used
<br>&nbsp;&nbsp;- see :help NERDComMappings, and :help
<br>&nbsp;&nbsp;&nbsp;&nbsp;NERDCreateDefaultMappings for more info
<br>- remove &quot;prepend comments&quot; and &quot;right aligned comments&quot;.
<br>- add support for applescript, calbire, man, SVNcommit,
<br>&nbsp;&nbsp;potwiki, txt2tags and SVNinfo.&nbsp;&nbsp;Thanks to nicothakis,
<br>&nbsp;&nbsp;timberke, sgronblo, mntnoe, Bernhard Grotz, John O'Shea,
<br>&nbsp;&nbsp;François and Giacomo Mariani respectively.
<br>- bugfix for haskell delimiters. Thanks to mntnoe.</td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=9031">NERD_commenter.zip</a></td>
+    <td class="rowodd" valign="top" nowrap><b>2.1.18</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2008-07-27</i></td>
     <td class="rowodd" valign="top" nowrap>7.0</td>
     <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">- added support for gitconfig, tar, nerdtree
<br>- added support for dtrace, thanks to nicothakis for the post
<br></td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=8643">NERD_commenter.zip</a></td>
-    <td class="roweven" valign="top" nowrap><b>2.1.13</b></td>
-    <td class="roweven" valign="top" nowrap><i>2008-05-03</i></td>
+    <td class="rowodd" valign="top" width="2000">- add support for llvm. Thanks to nicothakis.
<br>- add support for xquery. Thanks to Phillip Kovalev.
<br>- fixed haskell delimiters (hackily). Thanks to Elias
<br>&nbsp;&nbsp;Pipping.
<br>- add support for mailcap. Thanks to Pascal Brueckner.
<br>- add support for stata. Thanks to Jerónimo Carballo.
<br>- applied a patch from ewfalor to fix an error in the help
<br>&nbsp;&nbsp;file with the NERDMapleader doc
<br>- disable the insert mode ctrl-c mapping by default, see
<br>&nbsp;&nbsp;:help NERDComInsertComment if you wish to restore it
<br></td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=8860">NERD_commenter.zip</a></td>
+    <td class="roweven" valign="top" nowrap><b>2.1.16</b></td>
+    <td class="roweven" valign="top" nowrap><i>2008-06-26</i></td>
     <td class="roweven" valign="top" nowrap>7.0</td>
     <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000"> - added support for rib, pyrex/cython, liquid, services, gitcommit,
<br>&nbsp;&nbsp;vimperator, and slice. Thanks to spookypeanut, Greg Jandl, Christophe
<br>&nbsp;&nbsp;Benz, A Pontus, and Stromnov for emailing me and/or posting issues.
<br>- set the NERDRemoveExtraSpaces option to 1 by default as the doc states
<br>- other fixes: (thanks to Zhang Shuhan for all his emails and testing)
<br>&nbsp;&nbsp;&nbsp;&nbsp;* made the sexy comment mapping fall back to normal commenting if sexy
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;comments arent possible for the current filetype
<br>&nbsp;&nbsp;&nbsp;&nbsp;* fixed some bugs with sexy comments
<br>&nbsp;&nbsp;&nbsp;&nbsp;* made the uncommenting side of toggle comments slightly more robust
<br>&nbsp;&nbsp;&nbsp;&nbsp;* fixed a bug where some extra spaces werent being removed (although
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the currect options were set)
<br></td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=8510">NERD_commenter.zip</a></td>
-    <td class="rowodd" valign="top" nowrap><b>2.1.12</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2008-03-30</i></td>
+    <td class="roweven" valign="top" width="2000">compatibility fix for vim7.2, cheers to Ben Schmidt, David Fishburn, and
<br>Erik Falor for the emails, and to JaGoTerr for posting the issue.
<br></td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=8833">NERD_commenter.zip</a></td>
+    <td class="rowodd" valign="top" nowrap><b>2.1.15</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2008-06-21</i></td>
     <td class="rowodd" valign="top" nowrap>7.0</td>
     <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">- added support for patran and dakota, thx to Jacobo Diaz for the email
<br>- added support for gentoo-env-d, gentoo-init-d, gentoo-make-conf, grub, modconf and sudoers filetypes, thx to Li Jin for the patch.
<br>- added support for SVNdiff, gitAnnotate, gitdiff. Thx to nicothakis for posting the issue
<br></td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=8335">NERD_commenter.zip</a></td>
-    <td class="roweven" valign="top" nowrap><b>2.1.11</b></td>
-    <td class="roweven" valign="top" nowrap><i>2008-02-23</i></td>
+    <td class="rowodd" valign="top" width="2000">- added pamconf support, thanks to Martin Kustermann
<br>- added mason support, thanks to Indriði Einarsson
<br>- added map support, thanks to Chris
<br>- added bzr support, thanks to Stromnov
<br>- added group support, thanks to Krzysztof A. Adamski
<br>- change license to wtfpl
<br></td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=8700">NERD_commenter.zip</a></td>
+    <td class="roweven" valign="top" nowrap><b>2.1.14</b></td>
+    <td class="roweven" valign="top" nowrap><i>2008-05-16</i></td>
     <td class="roweven" valign="top" nowrap>7.0</td>
     <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">- fixed a bug with the selection option and visual commenting (again).&nbsp;&nbsp;Thanks to Ingo Karkat (again).
<br></td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=8325">NERD_commenter.zip</a></td>
-    <td class="rowodd" valign="top" nowrap><b>2.1.10</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2008-02-22</i></td>
+    <td class="roweven" valign="top" width="2000">- added support for gitconfig, tar, nerdtree
<br>- added support for dtrace, thanks to nicothakis for the post
<br></td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=8643">NERD_commenter.zip</a></td>
+    <td class="rowodd" valign="top" nowrap><b>2.1.13</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2008-05-03</i></td>
     <td class="rowodd" valign="top" nowrap>7.0</td>
     <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">- added support for Wikipedia (thanks to Chen Xing)
<br>- added support for mplayerconf
<br>- bugfixes (thanks to Ingo Karkat for the bug report/patch)
<br>- added support for mkd (thanks to Stefano Zacchiroli)
<br></td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=8161">NERD_commenter.zip</a></td>
-    <td class="roweven" valign="top" nowrap><b>2.1.9</b></td>
-    <td class="roweven" valign="top" nowrap><i>2008-01-18</i></td>
+    <td class="rowodd" valign="top" width="2000"> - added support for rib, pyrex/cython, liquid, services, gitcommit,
<br>&nbsp;&nbsp;vimperator, and slice. Thanks to spookypeanut, Greg Jandl, Christophe
<br>&nbsp;&nbsp;Benz, A Pontus, and Stromnov for emailing me and/or posting issues.
<br>- set the NERDRemoveExtraSpaces option to 1 by default as the doc states
<br>- other fixes: (thanks to Zhang Shuhan for all his emails and testing)
<br>&nbsp;&nbsp;&nbsp;&nbsp;* made the sexy comment mapping fall back to normal commenting if sexy
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;comments arent possible for the current filetype
<br>&nbsp;&nbsp;&nbsp;&nbsp;* fixed some bugs with sexy comments
<br>&nbsp;&nbsp;&nbsp;&nbsp;* made the uncommenting side of toggle comments slightly more robust
<br>&nbsp;&nbsp;&nbsp;&nbsp;* fixed a bug where some extra spaces werent being removed (although
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;the currect options were set)
<br></td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=8510">NERD_commenter.zip</a></td>
+    <td class="roweven" valign="top" nowrap><b>2.1.12</b></td>
+    <td class="roweven" valign="top" nowrap><i>2008-03-30</i></td>
     <td class="roweven" valign="top" nowrap>7.0</td>
     <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">- added support for mrxvtrc and aap, thx to Marco for the emails
<br>- added dummy support for SVNAnnotate, SVKAnnotate and CVSAnnotate, thx to nicothakis for posting the issue
<br></td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=8051">NERD_commenter.zip</a></td>
-    <td class="rowodd" valign="top" nowrap><b>2.1.8</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2007-12-13</i></td>
+    <td class="roweven" valign="top" width="2000">- added support for patran and dakota, thx to Jacobo Diaz for the email
<br>- added support for gentoo-env-d, gentoo-init-d, gentoo-make-conf, grub, modconf and sudoers filetypes, thx to Li Jin for the patch.
<br>- added support for SVNdiff, gitAnnotate, gitdiff. Thx to nicothakis for posting the issue
<br></td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=8335">NERD_commenter.zip</a></td>
+    <td class="rowodd" valign="top" nowrap><b>2.1.11</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2008-02-23</i></td>
     <td class="rowodd" valign="top" nowrap>7.0</td>
     <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">- fixed a couple of bugs with the NERDSpaceDelims option, thx to David Miani and Jeremy Hinegardner
<br>- added dummy support for lhaskell, thx to pipp for posting the issue
<br>- added an alternative set of delims for the plsql filetype, thx to Kuchma Michael
<br>- added support for spectre, thx to Brett Warneke
<br>- added support for scala, thx to Renald Buter
<br>- added support for asymptote, thx to Vladimir Lomov
<br>- made NERDDefaultNesting enabled by default as this seems more intuitive, thx to marco for the suggestion
<br></td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=7827">NERD_commenter.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>2.1.6</b></td>
-    <td class="roweven" valign="top" nowrap><i>2007-10-25</i></td>
+    <td class="rowodd" valign="top" width="2000">- fixed a bug with the selection option and visual commenting (again).&nbsp;&nbsp;Thanks to Ingo Karkat (again).
<br></td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=8325">NERD_commenter.zip</a></td>
+    <td class="roweven" valign="top" nowrap><b>2.1.10</b></td>
+    <td class="roweven" valign="top" nowrap><i>2008-02-22</i></td>
     <td class="roweven" valign="top" nowrap>7.0</td>
     <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">- added support for gentoo-conf-d thanks to tinoucas for posting the issue and the patch
<br>- added support for the D filetype. Thanks to Greg Weber for the email.
<br>- added dummy support for cobol, cheers to timberke for posting the issue.
<br>- added support for velocity. Thanks to Bruce Sherrod for the email.
<br></td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=7786">NERD_commenter.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>2.1.5</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2007-10-12</i></td>
+    <td class="roweven" valign="top" width="2000">- added support for Wikipedia (thanks to Chen Xing)
<br>- added support for mplayerconf
<br>- bugfixes (thanks to Ingo Karkat for the bug report/patch)
<br>- added support for mkd (thanks to Stefano Zacchiroli)
<br></td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=8161">NERD_commenter.zip</a></td>
+    <td class="rowodd" valign="top" nowrap><b>2.1.9</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2008-01-18</i></td>
     <td class="rowodd" valign="top" nowrap>7.0</td>
     <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">- added support for lilypond, bbx and lytex. Thanks to Eyolf Østrem for the email.
<br>- added an alterative set of delimiters for the dosbatch filetype, thanks to Ingo Karkat for the email.
<br>- added support for the markdown filetype. Thanks to Nicolas Weber for posting the issue.
<br></td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=7731">NERD_commenter.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>2.1.4</b></td>
-    <td class="roweven" valign="top" nowrap><i>2007-09-29</i></td>
+    <td class="rowodd" valign="top" width="2000">- added support for mrxvtrc and aap, thx to Marco for the emails
<br>- added dummy support for SVNAnnotate, SVKAnnotate and CVSAnnotate, thx to nicothakis for posting the issue
<br></td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=8051">NERD_commenter.zip</a></td>
+    <td class="roweven" valign="top" nowrap><b>2.1.8</b></td>
+    <td class="roweven" valign="top" nowrap><i>2007-12-13</i></td>
     <td class="roweven" valign="top" nowrap>7.0</td>
     <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">- added support for the ahk filetype. Cheers to Don Hatlestad for the email.
<br>- added support for desktop and xsd filetypes. Thanks to Christophe Benz.
<br>- added dummy support for Rails-log
<br>- fixed a bunch of bugs in the comment delimiter setup process, thanks to Cheng Fang for the email :D
<br>- hardcore refactoring and removal of seldomly used, overly-complex functionality
<br>- the script now requires vim 7
<br></td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=7570">NERD_commenter.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>2.1.3</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2007-08-27</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">- fixed numerous bugs that were causing tabs to permanently be converted to spaces, even if noexpandtab was set. Thanks to Heptite on #vim for working with me to track them down :)
<br>- added dummy support for &quot;lookupfile&quot;. Thanks to David Fishburn for the email.
<br>- added support for &quot;rst&quot;, thanks to Niels Aan de Brugh for the email.
<br></td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=7543">NERD_commenter.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>2.1.2</b></td>
-    <td class="roweven" valign="top" nowrap><i>2007-08-22</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">Added support for the vera and ldif filetypes. Thanks to Normandie
<br>Azucena and Florian Apolloner for the emails.
<br></td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=7525">NERD_commenter.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>2.1.1</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2007-08-18</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">- added dummy support for SVNcommitlog and vcscommit. Thanks to John O'Shea for the email.
<br>- added support for Groovy. Thanks to Jason Mills for the email.
<br></td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=7466">NERD_commenter.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>2.1.0</b></td>
-    <td class="roweven" valign="top" nowrap><i>2007-08-08</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">- now the script resets the delimiters when the filetype of the buffer changes (thanks to James Hales for the patch)
<br>- added formal support/doc for prepending a count to many of the commenting maps so you can go, eg, 5,cc to comment 5 lines from normal&nbsp;&nbsp;mode. Thanks again to James Hales for the patch.
<br>- added support for the &quot;gams&quot; filetype that Jorge Rodrigues created.
<br>- added support for the &quot;objc&quot; filetype, thanks to Rainer Müller for the email.
<br>- added support for the &quot;sass&quot; filetype that Dmitry Ilyashevich created.</td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=7391">NERD_commenter.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>2.0.7</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2007-07-22</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">Added support for eclass and ebuild filetypes. Thanks to Alex Tarkovsky
<br>for the email.
<br></td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=7309">NERD_commenter.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>2.0.6</b></td>
-    <td class="roweven" valign="top" nowrap><i>2007-06-29</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">- Changed the default setting of NERDMapleader to &quot;,c&quot;, meaning all the maps now start with ,c instead of \c. This is to stop a major mapping clash with the vcscommand plugin. Anyone wanting to keep the \c map leader should read :help NERDMapleader.
<br>- Added support for debcontrol and dummy support for debchangelog filetypes, thanks to Stefano Zacchiroli for the email.
<br>- Made it so that the NERDShutUp option now only controls the &quot;Pleeease email the delimiters...&quot; requests. It no longer affects the general output of the script.
<br>- Simplified the names of the help tags. 
<br></td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=7253">NERD_commenter.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>2.0.5</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2007-06-16</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">- Added support for autoit, autohotkey and docbk filetypes (thanks to&nbsp;&nbsp;Michael Böhler)
<br>- Added support for cmake (thanks to Aaron Small)
<br>- Added support for htmldjango and django filetypes (thanks to Ramiro&nbsp;&nbsp;Morales)
<br>- Improved the delimiters for eruby again
<br>- Applied a patch from Seth Mason to fix some pathing issues with the help&nbsp;&nbsp;file installation.
<br></td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=7097">NERD_commenter.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>2.0.4</b></td>
-    <td class="roweven" valign="top" nowrap><i>2007-05-11</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">- Added support for verilog_systemverilog and systemverilog filetypes
<br>&nbsp;&nbsp;(Thanks to Alexey for the email)
<br>- Added support for fstab, thanks to Lizendir for the email.
<br>- Added support for the smarty filetype.
<br>- Improved the delimiters for eruby.
<br>- Added dummy support for changelog filetype.
<br></td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=7060">NERD_commenter.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>2.0.3</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2007-05-03</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">- Added dummy support for the csv filetype (thx to Mark Woodward for the
<br>&nbsp;&nbsp;email)
<br>- Added dummy support for vo_base and otl filetypes (thanks to fREW for
<br>&nbsp;&nbsp;the email)
<br></td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=6977">NERD_commenter.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>2.0.2</b></td>
-    <td class="roweven" valign="top" nowrap><i>2007-04-13</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">Minor bug fix that was stopping nested comments from working</td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=6972">NERD_commenter.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>2.0.1</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2007-04-12</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">- Fixed the visual bell for the |NERDComToEOLMap| map.
<br>- Added another possible value to the NERDMenuMode option which causes the
<br>&nbsp;&nbsp;menu to be displayed under 'Plugin -&gt; Comment'. See :h NERDMenuMode.
<br>&nbsp;&nbsp;This new menu mode is now the default.
<br>- Added support for the occam filetype (thanks to Anders for emailing me)
<br>- Made the main commenting function (NERDComment) available outside the
<br>&nbsp;&nbsp;script. See :h NERD_com_NERDComment
<br>- bug fixes and refactoring
<br></td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=6938">NERD_commenter.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>2.0.0</b></td>
-    <td class="roweven" valign="top" nowrap><i>2007-04-02</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">- NOTE: renamed the script to&nbsp;&nbsp;NERD_commenter.vim. When you install this
<br>&nbsp;&nbsp;version you must delete the old files: NERD_comments.vim and 
<br>&nbsp;&nbsp;NERD_comments.txt.
<br>- Reworked the mappings and main entry point function for the script to
<br>&nbsp;&nbsp;avoid causing visual-bells and screen scrolling.
<br>- Changes to the script options (see |NERD_com-Customisation| for
<br>&nbsp;&nbsp;details):
<br>&nbsp;&nbsp;&nbsp;&nbsp;- They are all camel case now instead of underscored.
<br>&nbsp;&nbsp;&nbsp;&nbsp;- Converted all of the regular expression options into simple boolean
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;options for simplicity.
<br>&nbsp;&nbsp;&nbsp;&nbsp;- All the options are now stated positively, eg.
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;NERD_dont_remove_spaces_regexp has become NERDRemoveExtraSpaces.
<br>&nbsp;&nbsp;&nbsp;&nbsp;- Some of the option names have been changed (other than in the above
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ways)
<br>&nbsp;&nbsp;&nbsp;&nbsp;- Some have been removed altogether, namely: NERD_create_h_filetype
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(why was a commenting script creating a filetype?!),
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;NERD_left_align_regexp, NERD_right_align_regexp, 
<br>
<br>- Removed all the NERD_use_alt_style_XXX_coms options and replaced them
<br>&nbsp;&nbsp;with a better system. Now if a filetype has alternative delims, the
<br>&nbsp;&nbsp;script will check whether an option of the form
<br>&nbsp;&nbsp;&quot;NERD_&lt;&filetype&gt;_alt_style&quot; exists, and if it does then alt delims will
<br>&nbsp;&nbsp;be used. See |NERD_com-cust-delims| for details.
<br>- The script no longer removes extra spaces for sexy comments for the
<br>&nbsp;&nbsp;NERDRemoveExtraSpaces option (it will still remove spaces if
<br>&nbsp;&nbsp;NERDSpaceDelims is set).
<br>- Added dummy support for viminfo and rtf.
<br>- Added support for the &quot;gentoo-package-\(keywords\|mask\|use\)&quot;
<br>&nbsp;&nbsp;filetypes.
<br>- Added '#' comments as an alternative for the asm filetype
<br>
<br>Thanks to Markus Klinik and Anders for bug reports, and again to Anders
<br>for his patch. Thanks to John O'Shea and fREW for the filetype
<br>information.
<br></td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=6659">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.69.2</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2007-01-25</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">Added dummy support for the qf (quickfix filetype). This stops the script from spitting out the &quot;unknown filetype&quot; message when you go :copen.
<br>
<br>Thanks to Ilia N Ternovich for emailing me about this.</td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=6624">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.69.1</b></td>
-    <td class="roweven" valign="top" nowrap><i>2007-01-18</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">*fixed the mark clobbering that was occuring.
<br>
<br>*added support for the following filetypes: netdict, bib, bst, passwd, omlet and kconfig. Thanks to Michael Brunner, Antono Vasiljev, Melissa Reid and Tim Carey-Smith for telling me about these filetypes (hope i didnt miss anyone)</td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=6152">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.69</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2006-09-08</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">fixed a bug when initializing vb comment delimiters (cheers to boesi for pointing it out). Added support for the following filetypes: debsources, eruby, xhtml and yaml. Added &quot;dummy&quot; support for the following filetypes: netrw, svn, taglist, and the null filetype. These filetypes have no comment delimiters but now that NERD knows about them it doesnt complain anymore.</td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=6067">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.68</b></td>
-    <td class="roweven" valign="top" nowrap><i>2006-08-13</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">Added an option called NERD_mapleader which allows you to change the two keys that all the mappings begin with by default. This will allow users to change all mappings easily so they dont conflict with any other plugins. Thanks to Tim Carey-Smith and Gary Church whose complaints prompted me to make this option :)</td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=5716">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.67</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2006-05-18</i></td>
+    <td class="roweven" valign="top" width="2000">- fixed a couple of bugs with the NERDSpaceDelims option, thx to David Miani and Jeremy Hinegardner
<br>- added dummy support for lhaskell, thx to pipp for posting the issue
<br>- added an alternative set of delims for the plsql filetype, thx to Kuchma Michael
<br>- added support for spectre, thx to Brett Warneke
<br>- added support for scala, thx to Renald Buter
<br>- added support for asymptote, thx to Vladimir Lomov
<br>- made NERDDefaultNesting enabled by default as this seems more intuitive, thx to marco for the suggestion
<br></td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=7827">NERD_commenter.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>2.1.6</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2007-10-25</i></td>
     <td class="rowodd" valign="top" nowrap>7.0</td>
     <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">Replaced the NERD_dont_create_menu_shortcut option with NERD_menu_mode. This new option allows the user to specify 1) whether a comment menu should be made and 2) whether this menu should have &lt;alt&gt;-c as a shortcut. Go :help NERD_menu_mode for more info. Thanks to Joseph Barker for the sugesting that the menu should be an optional feature.
<br>
<br>Added suppport for plaintex, context and mail filetypes (when commenting a &quot;mail&quot; file &quot;&gt; &quot; is used as the left delimiter so that the commented text appears as quoted text in the email). Thanks to Jonathan Derque for emailing me with these filetypes.</td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=5576">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.66</b></td>
-    <td class="roweven" valign="top" nowrap><i>2006-04-18</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">Applied a patch that Norick Chen emailed to me that fixed the asp delimiters (which were wrong and caused an error)
<br>
<br>Thanks Norick :)
<br>
<br></td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=5542">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.65</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2006-04-11</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">Made minimal comments use the NERD_place_holder_regexp option. Now if place holders are needed but are disabled for the current filetype then the minimal comment is aborted. Thanks to Stefano Zacchiroli emailing me and prompting this change.
<br>
<br>Fixed a minor bug with minimal comments.
<br></td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=5535">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.64</b></td>
-    <td class="roweven" valign="top" nowrap><i>2006-04-09</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">Refactored the code a bit and removed the NERD_use_toggle_coms_default and
<br>NERD_use_sexy_coms_default_regexp options. Now you have to adjust the key
<br>mappings to achieve the same effects as these options
<br>
<br>Sexy comments now always use the c style delimiters if they are available (even if another set of multipart delims is available) because they generally look the best.
<br>
<br>Fixed a bug that occured when using the tabs in vim7 (thanks to Harry for pointing it out:).
<br>
<br>Added a new commenting type called &quot;minimal&quot; comments where a SINGLE set of multipart delimiters is used to comment out a bunch of lines. Go :help NERD_com-minimal-comment for details. Thanks to Stefano Zacchiroli for this suggestion.
<br>
<br>Fixed some random little bugs.</td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=5167">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.63</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2006-02-12</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">fixed a bug that was stopping the NERD_space_delim_filetype_regexp option from working with left aligned toggle comments. Thanks to boesi for pointing this out.
<br></td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4985">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.62</b></td>
-    <td class="roweven" valign="top" nowrap><i>2006-01-17</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">Fixed 2 bugs that caused problems when uncommenting sexy comments. Thanks to Torsten Blix for emailing me about them.</td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4970">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.61</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2006-01-14</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">Applied a patch sent to me by Eike Von Seggern that fixed a bug that caused a space to be added to the end of the line when commenting with single-part delimiters. </td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4956">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.60</b></td>
-    <td class="roweven" valign="top" nowrap><i>2006-01-10</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">Added a new option that turns off the NERD_comments menu shortcut (Alt-c) which could interfere with other (Non-NERD)&nbsp;&nbsp;mappings. Thanks to Nguyen for pointing out this problem :)</td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4697">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.59</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2005-10-25</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">fixed a small bug that was causing problems with spaces around delimiters.</td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4696">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.58</b></td>
-    <td class="roweven" valign="top" nowrap><i>2005-10-24</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">fixed a bug that could be a problem when changing buffers. Thanks to David Bourgeois for pointing it out.</td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4691">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.57</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2005-10-21</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">Fixed a retarded bug when commenting c files (thanks to David&nbsp;&nbsp;Bourgeois for pointing it out).
<br>Changed the NERD_dont_remove_spaces option to NERD_dont_remove_spaces_regexp and made it take a regular expression. Go :help NERD_dont_remove_spaces_regexp for details. Put a section in the help file that gives some examples of regular expressions that&nbsp;&nbsp;you may want to use for some of the options. Go :help NERD_com-reg-exps for details.</td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4641">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.56</b></td>
-    <td class="roweven" valign="top" nowrap><i>2005-10-01</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">Tweaked the behaviour of the &quot;toggle comment&quot; mapping: now if you are commenting a range (with toggle comments) and&nbsp;&nbsp;you have the NERD_use_nested_comments_default option turned on it will comment the already comment lines again. Cheers to Igor Prischepoff for this suggestion. I also reorgansied the help page and added some stuff to make it more readable :)</td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4581">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.55</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2005-09-14</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">made the \ci mapping work with whole lines line the \c&lt;space&gt; mapping does i.e the mapping only counts a line as commented if it commented from the start of the line.
<br>Fixed a couple of silly bugs</td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4578">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.54</b></td>
-    <td class="roweven" valign="top" nowrap><i>2005-09-13</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">Fixed the \cn mapping that i broke in the last version. Thanks to harry for pointing that out.
<br>Changed the behaviour of toggle comments: now lines are only counted as commented if they are commented from the beginning of the line. Thanks to Igor Prischepoff for suggesting this. I applied a patch by Richard (Krischikm) which fixed a couple of bugs and added a new option (see :help NERD_use_ada_with_spaces for details). I changed how the script handles tabs: now each line is examined individually instead of using examining the &expandtabs option and assuming it applies to every line. The script should not interfere with the tabbing style of any file you edit now... even if they alternate between soft and hard tabs with each line :).&nbsp;&nbsp;Stopped the cursor jumping when the \cu mapping is used.</td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4566">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.53</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2005-09-12</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">Made some changes to how spaces around comments are removed when uncommenting... basically they are always removed unless the new option NERD_dont_remove_spaces is set. Go :help NERD_dont_remove_spaces for details. I added this functionality because i usually dont have NERD_comments adding spaces after/before the left/right delimiters but when im editing code written by people who DO it makes me insane because it is uncommented incorrectly.&nbsp;&nbsp;Fixed the cursor and screen jumping bugs... hopefully :)</td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4557">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.52</b></td>
-    <td class="roweven" valign="top" nowrap><i>2005-09-06</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">Fixed an error in the help file. Added support for // comments in c. Made an option to turn these // comments on by default (go :help NERD_use_single_part_c_comments for details). Thanks to Richard Willis whose feedback prompted these changes :)</td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4554">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.51</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2005-09-05</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">Added yet another mapping (&lt;leader&gt;ci) which inverts the commented state of every selected line. i.e. for each line selected, if it is commented it is uncommented and vice versa. Thanks to Nick Brettell for the idea. Improved the cursor positioning after commenting is done so if you do a visual comment the cursor returns to a better position. Removed some line continuations that were screwing up on some systems. Thanks to Richard for pointing that out to me.</td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4541">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.50</b></td>
-    <td class="roweven" valign="top" nowrap><i>2005-08-31</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">Added a new mapping &lt;leader&gt;c&lt;space&gt; that toggles the comment state of the selected lines. It uncomments all the lines if the first line is commented and comments them otherwise. The mapping can be changed with this option: NERD_com_line_toggle_map. Toggle commenting can be made the default commenting method (so it applied when &lt;leader&gt;cc is pressed) with this option: NERD_use_toggle_coms_default. Thanks to Igor Prischepoff for the idea :)</td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4538">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.49</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2005-08-30</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">Fixed a bug that was causing problems when the ignorecase option in vim was set. Thanks to Brent Rice for telling me about this problem and helping me track the bug down :)</td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4533">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.48</b></td>
-    <td class="roweven" valign="top" nowrap><i>2005-08-28</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">Fixed a bug with sexy comments that was stopping them from working when you were using the alternative set of delimiters for some languages (eg c/java/etc)</td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4516">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.47</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2005-08-25</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">Fixed bugs with sexy comments (most of the bugs were only an issue when using compact sexy comments): Now they work properly if they end on a blank line. When uncommenting sexy comments the display window doesnt jump anymore. If the sexy comment starts or ends on another ordinary&nbsp;&nbsp;comment it no longer screws up. Sexy comments no longer delete parts of lines (which they did from time to time). Blank lines above compact sexy comments are no longer removed when uncommenting.
<br>Fixed another bug with the &lt;C-c&gt; mapping.</td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4436">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.46</b></td>
-    <td class="roweven" valign="top" nowrap><i>2005-07-17</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">enhanced the option: NERD_comment_whole_lines_in_v_mode so that it can now take 2 values. Go :help NERD_comment_whole_lines_in_v_mode for an explaination. Thanks to jorge scandaliaris for emailing me with his criticism about this :)</td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4429">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.45</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2005-07-14</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">Now the script doesnt create a seperate filetype for h files unless&nbsp;&nbsp;you tell it to with a new option called NERD_create_h_filetype. Go :help NERD_create_h_filetype for more info.
<br>This update was done to prevent NERD_comments from&nbsp;&nbsp;screwing with the taglist plugin. 
<br>
<br>Thanks to Markus Erlmann for pointing out that it caused problems.</td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4413">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.44</b></td>
-    <td class="roweven" valign="top" nowrap><i>2005-07-06</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">Fixed a bug with the &lt;C-c&gt; mapping after i broke it (again :().
<br>Thanks to Martin Stubenschrott for pointing this bug out!
<br></td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4404">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.43</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2005-06-30</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">Fixed a bug with visual commenting.
<br>Added a new option, go :help NERD_comment_whole_lines_in_v_mode for details. Thanks to&nbsp;&nbsp;jorge scandaliaris and&nbsp;&nbsp;Shufeng Zheng for their suggestions about this.</td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4393">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.42</b></td>
-    <td class="roweven" valign="top" nowrap><i>2005-06-26</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">Now, when any visual comments are made, the cursor is placed at the top left line/col of the visual selection block after the comment is done instead of on the top line at the first col. Thanks to Nick Brettell for complaining about this.
<br>
<br>Added support for .geek files hahahaha</td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4369">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.41</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2005-06-16</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">fixed a small bug with the &lt;C-c&gt; functionality when the script is configured to put extra spaces between the delimiters.</td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4292">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.40</b></td>
-    <td class="roweven" valign="top" nowrap><i>2005-05-18</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">Fixed a bug that was screwing up place holders with nested commenting when NERD_use_nested_comments_default option is set. Changed the left and right default place holders because the strings that were being used were sort of common in c/c++/java/... files. If you liked them the way they were you can just set them back with the NERD_lPlace and NERD_rPlace options.
<br>Thanx to Nick for complaining about the place holders and spotting the other bug :P
<br></td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4283">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.39</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2005-05-15</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">Fixed a retarded bug with the &lt;C-c&gt; mapping.
<br>Changed the &lt;leader&gt;ce mapping to have a default mapping of &lt;leader&gt;cA and added a new mapping that adds a comment delimiter to the start of the current line and inserts between the delimiters - the default mapping is &lt;leader&gt;cI (thats an uppercase i not a lowercase L).
<br>Fixed a bug that caused the script to spaz out if you tried to comment a file with no filetype.</td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4279">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.38</b></td>
-    <td class="roweven" valign="top" nowrap><i>2005-05-13</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">Added new functionality for when text is commented in normal visual mode (i.e not visual-block or visual-line). Now Nerd_comments comments out exactly the text that is selected in visual mode regardless of the type of visual mode you are in. 
<br>Thanks to Nick Brettell his ideas about this!
<br>
<br>Also, if you are commenting out text in visual or visual-block mode, NERD_comments will use multip-part delimiters is they are available so that the exact text that was selected will be exactly what is commented out - a new option has been added to turn off this behaviour (go :help NERD_allow_any_visual_delims_regexp for details).
<br>
<br>Fixed a couple of small bugs with the &lt;C-c&gt; mapping that prolly on one even noticed :P
<br>
<br>
<br>
<br></td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4260">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.37</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2005-05-09</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">Added a new mapping/menu item:
<br>Now when &lt;leader&gt;ce is pressed a comment is appended to the EOL and the cursor gets put in insert mode in the appropriate place to type the comment.
<br>
<br>Thanks to Litchi for emailing me with this idea :)
<br>
<br></td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4258">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.36</b></td>
-    <td class="roweven" valign="top" nowrap><i>2005-05-08</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">added lots more supported filetypes</td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4237">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.35</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2005-05-04</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">Added support for some new filetypes.
<br>Fixed a small bug with sexy comments.
<br>Fixed a bug with tabs that was not too serious but would screw up commenting of things like makefiles in a big way. Cheers to Nick Brettell for pointing this bug out!</td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4223">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.34</b></td>
+    <td class="rowodd" valign="top" width="2000">- added support for gentoo-conf-d thanks to tinoucas for posting the issue and the patch
<br>- added support for the D filetype. Thanks to Greg Weber for the email.
<br>- added dummy support for cobol, cheers to timberke for posting the issue.
<br>- added support for velocity. Thanks to Bruce Sherrod for the email.
<br></td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=7786">NERD_commenter.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>2.1.5</b></td>
+    <td class="roweven" valign="top" nowrap><i>2007-10-12</i></td>
+    <td class="roweven" valign="top" nowrap>7.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">- added support for lilypond, bbx and lytex. Thanks to Eyolf Østrem for the email.
<br>- added an alterative set of delimiters for the dosbatch filetype, thanks to Ingo Karkat for the email.
<br>- added support for the markdown filetype. Thanks to Nicolas Weber for posting the issue.
<br></td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=7731">NERD_commenter.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>2.1.4</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2007-09-29</i></td>
+    <td class="rowodd" valign="top" nowrap>7.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">- added support for the ahk filetype. Cheers to Don Hatlestad for the email.
<br>- added support for desktop and xsd filetypes. Thanks to Christophe Benz.
<br>- added dummy support for Rails-log
<br>- fixed a bunch of bugs in the comment delimiter setup process, thanks to Cheng Fang for the email :D
<br>- hardcore refactoring and removal of seldomly used, overly-complex functionality
<br>- the script now requires vim 7
<br></td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=7570">NERD_commenter.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>2.1.3</b></td>
+    <td class="roweven" valign="top" nowrap><i>2007-08-27</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">- fixed numerous bugs that were causing tabs to permanently be converted to spaces, even if noexpandtab was set. Thanks to Heptite on #vim for working with me to track them down :)
<br>- added dummy support for &quot;lookupfile&quot;. Thanks to David Fishburn for the email.
<br>- added support for &quot;rst&quot;, thanks to Niels Aan de Brugh for the email.
<br></td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=7543">NERD_commenter.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>2.1.2</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2007-08-22</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">Added support for the vera and ldif filetypes. Thanks to Normandie
<br>Azucena and Florian Apolloner for the emails.
<br></td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=7525">NERD_commenter.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>2.1.1</b></td>
+    <td class="roweven" valign="top" nowrap><i>2007-08-18</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">- added dummy support for SVNcommitlog and vcscommit. Thanks to John O'Shea for the email.
<br>- added support for Groovy. Thanks to Jason Mills for the email.
<br></td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=7466">NERD_commenter.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>2.1.0</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2007-08-08</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">- now the script resets the delimiters when the filetype of the buffer changes (thanks to James Hales for the patch)
<br>- added formal support/doc for prepending a count to many of the commenting maps so you can go, eg, 5,cc to comment 5 lines from normal&nbsp;&nbsp;mode. Thanks again to James Hales for the patch.
<br>- added support for the &quot;gams&quot; filetype that Jorge Rodrigues created.
<br>- added support for the &quot;objc&quot; filetype, thanks to Rainer Müller for the email.
<br>- added support for the &quot;sass&quot; filetype that Dmitry Ilyashevich created.</td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=7391">NERD_commenter.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>2.0.7</b></td>
+    <td class="roweven" valign="top" nowrap><i>2007-07-22</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">Added support for eclass and ebuild filetypes. Thanks to Alex Tarkovsky
<br>for the email.
<br></td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=7309">NERD_commenter.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>2.0.6</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2007-06-29</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">- Changed the default setting of NERDMapleader to &quot;,c&quot;, meaning all the maps now start with ,c instead of \c. This is to stop a major mapping clash with the vcscommand plugin. Anyone wanting to keep the \c map leader should read :help NERDMapleader.
<br>- Added support for debcontrol and dummy support for debchangelog filetypes, thanks to Stefano Zacchiroli for the email.
<br>- Made it so that the NERDShutUp option now only controls the &quot;Pleeease email the delimiters...&quot; requests. It no longer affects the general output of the script.
<br>- Simplified the names of the help tags. 
<br></td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=7253">NERD_commenter.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>2.0.5</b></td>
+    <td class="roweven" valign="top" nowrap><i>2007-06-16</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">- Added support for autoit, autohotkey and docbk filetypes (thanks to&nbsp;&nbsp;Michael Böhler)
<br>- Added support for cmake (thanks to Aaron Small)
<br>- Added support for htmldjango and django filetypes (thanks to Ramiro&nbsp;&nbsp;Morales)
<br>- Improved the delimiters for eruby again
<br>- Applied a patch from Seth Mason to fix some pathing issues with the help&nbsp;&nbsp;file installation.
<br></td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=7097">NERD_commenter.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>2.0.4</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2007-05-11</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">- Added support for verilog_systemverilog and systemverilog filetypes
<br>&nbsp;&nbsp;(Thanks to Alexey for the email)
<br>- Added support for fstab, thanks to Lizendir for the email.
<br>- Added support for the smarty filetype.
<br>- Improved the delimiters for eruby.
<br>- Added dummy support for changelog filetype.
<br></td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=7060">NERD_commenter.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>2.0.3</b></td>
+    <td class="roweven" valign="top" nowrap><i>2007-05-03</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">- Added dummy support for the csv filetype (thx to Mark Woodward for the
<br>&nbsp;&nbsp;email)
<br>- Added dummy support for vo_base and otl filetypes (thanks to fREW for
<br>&nbsp;&nbsp;the email)
<br></td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=6977">NERD_commenter.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>2.0.2</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2007-04-13</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">Minor bug fix that was stopping nested comments from working</td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=6972">NERD_commenter.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>2.0.1</b></td>
+    <td class="roweven" valign="top" nowrap><i>2007-04-12</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">- Fixed the visual bell for the |NERDComToEOLMap| map.
<br>- Added another possible value to the NERDMenuMode option which causes the
<br>&nbsp;&nbsp;menu to be displayed under 'Plugin -&gt; Comment'. See :h NERDMenuMode.
<br>&nbsp;&nbsp;This new menu mode is now the default.
<br>- Added support for the occam filetype (thanks to Anders for emailing me)
<br>- Made the main commenting function (NERDComment) available outside the
<br>&nbsp;&nbsp;script. See :h NERD_com_NERDComment
<br>- bug fixes and refactoring
<br></td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=6938">NERD_commenter.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>2.0.0</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2007-04-02</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">- NOTE: renamed the script to&nbsp;&nbsp;NERD_commenter.vim. When you install this
<br>&nbsp;&nbsp;version you must delete the old files: NERD_comments.vim and 
<br>&nbsp;&nbsp;NERD_comments.txt.
<br>- Reworked the mappings and main entry point function for the script to
<br>&nbsp;&nbsp;avoid causing visual-bells and screen scrolling.
<br>- Changes to the script options (see |NERD_com-Customisation| for
<br>&nbsp;&nbsp;details):
<br>&nbsp;&nbsp;&nbsp;&nbsp;- They are all camel case now instead of underscored.
<br>&nbsp;&nbsp;&nbsp;&nbsp;- Converted all of the regular expression options into simple boolean
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;options for simplicity.
<br>&nbsp;&nbsp;&nbsp;&nbsp;- All the options are now stated positively, eg.
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;NERD_dont_remove_spaces_regexp has become NERDRemoveExtraSpaces.
<br>&nbsp;&nbsp;&nbsp;&nbsp;- Some of the option names have been changed (other than in the above
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;ways)
<br>&nbsp;&nbsp;&nbsp;&nbsp;- Some have been removed altogether, namely: NERD_create_h_filetype
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(why was a commenting script creating a filetype?!),
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;NERD_left_align_regexp, NERD_right_align_regexp, 
<br>
<br>- Removed all the NERD_use_alt_style_XXX_coms options and replaced them
<br>&nbsp;&nbsp;with a better system. Now if a filetype has alternative delims, the
<br>&nbsp;&nbsp;script will check whether an option of the form
<br>&nbsp;&nbsp;&quot;NERD_&lt;&filetype&gt;_alt_style&quot; exists, and if it does then alt delims will
<br>&nbsp;&nbsp;be used. See |NERD_com-cust-delims| for details.
<br>- The script no longer removes extra spaces for sexy comments for the
<br>&nbsp;&nbsp;NERDRemoveExtraSpaces option (it will still remove spaces if
<br>&nbsp;&nbsp;NERDSpaceDelims is set).
<br>- Added dummy support for viminfo and rtf.
<br>- Added support for the &quot;gentoo-package-\(keywords\|mask\|use\)&quot;
<br>&nbsp;&nbsp;filetypes.
<br>- Added '#' comments as an alternative for the asm filetype
<br>
<br>Thanks to Markus Klinik and Anders for bug reports, and again to Anders
<br>for his patch. Thanks to John O'Shea and fREW for the filetype
<br>information.
<br></td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=6659">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.69.2</b></td>
+    <td class="roweven" valign="top" nowrap><i>2007-01-25</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">Added dummy support for the qf (quickfix filetype). This stops the script from spitting out the &quot;unknown filetype&quot; message when you go :copen.
<br>
<br>Thanks to Ilia N Ternovich for emailing me about this.</td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=6624">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.69.1</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2007-01-18</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">*fixed the mark clobbering that was occuring.
<br>
<br>*added support for the following filetypes: netdict, bib, bst, passwd, omlet and kconfig. Thanks to Michael Brunner, Antono Vasiljev, Melissa Reid and Tim Carey-Smith for telling me about these filetypes (hope i didnt miss anyone)</td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=6152">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.69</b></td>
+    <td class="roweven" valign="top" nowrap><i>2006-09-08</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">fixed a bug when initializing vb comment delimiters (cheers to boesi for pointing it out). Added support for the following filetypes: debsources, eruby, xhtml and yaml. Added &quot;dummy&quot; support for the following filetypes: netrw, svn, taglist, and the null filetype. These filetypes have no comment delimiters but now that NERD knows about them it doesnt complain anymore.</td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=6067">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.68</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2006-08-13</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">Added an option called NERD_mapleader which allows you to change the two keys that all the mappings begin with by default. This will allow users to change all mappings easily so they dont conflict with any other plugins. Thanks to Tim Carey-Smith and Gary Church whose complaints prompted me to make this option :)</td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=5716">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.67</b></td>
+    <td class="roweven" valign="top" nowrap><i>2006-05-18</i></td>
+    <td class="roweven" valign="top" nowrap>7.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">Replaced the NERD_dont_create_menu_shortcut option with NERD_menu_mode. This new option allows the user to specify 1) whether a comment menu should be made and 2) whether this menu should have &lt;alt&gt;-c as a shortcut. Go :help NERD_menu_mode for more info. Thanks to Joseph Barker for the sugesting that the menu should be an optional feature.
<br>
<br>Added suppport for plaintex, context and mail filetypes (when commenting a &quot;mail&quot; file &quot;&gt; &quot; is used as the left delimiter so that the commented text appears as quoted text in the email). Thanks to Jonathan Derque for emailing me with these filetypes.</td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=5576">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.66</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2006-04-18</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">Applied a patch that Norick Chen emailed to me that fixed the asp delimiters (which were wrong and caused an error)
<br>
<br>Thanks Norick :)
<br>
<br></td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=5542">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.65</b></td>
+    <td class="roweven" valign="top" nowrap><i>2006-04-11</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">Made minimal comments use the NERD_place_holder_regexp option. Now if place holders are needed but are disabled for the current filetype then the minimal comment is aborted. Thanks to Stefano Zacchiroli emailing me and prompting this change.
<br>
<br>Fixed a minor bug with minimal comments.
<br></td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=5535">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.64</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2006-04-09</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">Refactored the code a bit and removed the NERD_use_toggle_coms_default and
<br>NERD_use_sexy_coms_default_regexp options. Now you have to adjust the key
<br>mappings to achieve the same effects as these options
<br>
<br>Sexy comments now always use the c style delimiters if they are available (even if another set of multipart delims is available) because they generally look the best.
<br>
<br>Fixed a bug that occured when using the tabs in vim7 (thanks to Harry for pointing it out:).
<br>
<br>Added a new commenting type called &quot;minimal&quot; comments where a SINGLE set of multipart delimiters is used to comment out a bunch of lines. Go :help NERD_com-minimal-comment for details. Thanks to Stefano Zacchiroli for this suggestion.
<br>
<br>Fixed some random little bugs.</td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=5167">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.63</b></td>
+    <td class="roweven" valign="top" nowrap><i>2006-02-12</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">fixed a bug that was stopping the NERD_space_delim_filetype_regexp option from working with left aligned toggle comments. Thanks to boesi for pointing this out.
<br></td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4985">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.62</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2006-01-17</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">Fixed 2 bugs that caused problems when uncommenting sexy comments. Thanks to Torsten Blix for emailing me about them.</td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4970">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.61</b></td>
+    <td class="roweven" valign="top" nowrap><i>2006-01-14</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">Applied a patch sent to me by Eike Von Seggern that fixed a bug that caused a space to be added to the end of the line when commenting with single-part delimiters. </td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4956">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.60</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2006-01-10</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">Added a new option that turns off the NERD_comments menu shortcut (Alt-c) which could interfere with other (Non-NERD)&nbsp;&nbsp;mappings. Thanks to Nguyen for pointing out this problem :)</td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4697">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.59</b></td>
+    <td class="roweven" valign="top" nowrap><i>2005-10-25</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">fixed a small bug that was causing problems with spaces around delimiters.</td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4696">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.58</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2005-10-24</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">fixed a bug that could be a problem when changing buffers. Thanks to David Bourgeois for pointing it out.</td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4691">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.57</b></td>
+    <td class="roweven" valign="top" nowrap><i>2005-10-21</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">Fixed a retarded bug when commenting c files (thanks to David&nbsp;&nbsp;Bourgeois for pointing it out).
<br>Changed the NERD_dont_remove_spaces option to NERD_dont_remove_spaces_regexp and made it take a regular expression. Go :help NERD_dont_remove_spaces_regexp for details. Put a section in the help file that gives some examples of regular expressions that&nbsp;&nbsp;you may want to use for some of the options. Go :help NERD_com-reg-exps for details.</td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4641">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.56</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2005-10-01</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">Tweaked the behaviour of the &quot;toggle comment&quot; mapping: now if you are commenting a range (with toggle comments) and&nbsp;&nbsp;you have the NERD_use_nested_comments_default option turned on it will comment the already comment lines again. Cheers to Igor Prischepoff for this suggestion. I also reorgansied the help page and added some stuff to make it more readable :)</td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4581">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.55</b></td>
+    <td class="roweven" valign="top" nowrap><i>2005-09-14</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">made the \ci mapping work with whole lines line the \c&lt;space&gt; mapping does i.e the mapping only counts a line as commented if it commented from the start of the line.
<br>Fixed a couple of silly bugs</td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4578">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.54</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2005-09-13</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">Fixed the \cn mapping that i broke in the last version. Thanks to harry for pointing that out.
<br>Changed the behaviour of toggle comments: now lines are only counted as commented if they are commented from the beginning of the line. Thanks to Igor Prischepoff for suggesting this. I applied a patch by Richard (Krischikm) which fixed a couple of bugs and added a new option (see :help NERD_use_ada_with_spaces for details). I changed how the script handles tabs: now each line is examined individually instead of using examining the &expandtabs option and assuming it applies to every line. The script should not interfere with the tabbing style of any file you edit now... even if they alternate between soft and hard tabs with each line :).&nbsp;&nbsp;Stopped the cursor jumping when the \cu mapping is used.</td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4566">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.53</b></td>
+    <td class="roweven" valign="top" nowrap><i>2005-09-12</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">Made some changes to how spaces around comments are removed when uncommenting... basically they are always removed unless the new option NERD_dont_remove_spaces is set. Go :help NERD_dont_remove_spaces for details. I added this functionality because i usually dont have NERD_comments adding spaces after/before the left/right delimiters but when im editing code written by people who DO it makes me insane because it is uncommented incorrectly.&nbsp;&nbsp;Fixed the cursor and screen jumping bugs... hopefully :)</td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4557">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.52</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2005-09-06</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">Fixed an error in the help file. Added support for // comments in c. Made an option to turn these // comments on by default (go :help NERD_use_single_part_c_comments for details). Thanks to Richard Willis whose feedback prompted these changes :)</td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4554">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.51</b></td>
+    <td class="roweven" valign="top" nowrap><i>2005-09-05</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">Added yet another mapping (&lt;leader&gt;ci) which inverts the commented state of every selected line. i.e. for each line selected, if it is commented it is uncommented and vice versa. Thanks to Nick Brettell for the idea. Improved the cursor positioning after commenting is done so if you do a visual comment the cursor returns to a better position. Removed some line continuations that were screwing up on some systems. Thanks to Richard for pointing that out to me.</td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4541">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.50</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2005-08-31</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">Added a new mapping &lt;leader&gt;c&lt;space&gt; that toggles the comment state of the selected lines. It uncomments all the lines if the first line is commented and comments them otherwise. The mapping can be changed with this option: NERD_com_line_toggle_map. Toggle commenting can be made the default commenting method (so it applied when &lt;leader&gt;cc is pressed) with this option: NERD_use_toggle_coms_default. Thanks to Igor Prischepoff for the idea :)</td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4538">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.49</b></td>
+    <td class="roweven" valign="top" nowrap><i>2005-08-30</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">Fixed a bug that was causing problems when the ignorecase option in vim was set. Thanks to Brent Rice for telling me about this problem and helping me track the bug down :)</td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4533">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.48</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2005-08-28</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">Fixed a bug with sexy comments that was stopping them from working when you were using the alternative set of delimiters for some languages (eg c/java/etc)</td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4516">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.47</b></td>
+    <td class="roweven" valign="top" nowrap><i>2005-08-25</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">Fixed bugs with sexy comments (most of the bugs were only an issue when using compact sexy comments): Now they work properly if they end on a blank line. When uncommenting sexy comments the display window doesnt jump anymore. If the sexy comment starts or ends on another ordinary&nbsp;&nbsp;comment it no longer screws up. Sexy comments no longer delete parts of lines (which they did from time to time). Blank lines above compact sexy comments are no longer removed when uncommenting.
<br>Fixed another bug with the &lt;C-c&gt; mapping.</td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4436">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.46</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2005-07-17</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">enhanced the option: NERD_comment_whole_lines_in_v_mode so that it can now take 2 values. Go :help NERD_comment_whole_lines_in_v_mode for an explaination. Thanks to jorge scandaliaris for emailing me with his criticism about this :)</td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4429">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.45</b></td>
+    <td class="roweven" valign="top" nowrap><i>2005-07-14</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">Now the script doesnt create a seperate filetype for h files unless&nbsp;&nbsp;you tell it to with a new option called NERD_create_h_filetype. Go :help NERD_create_h_filetype for more info.
<br>This update was done to prevent NERD_comments from&nbsp;&nbsp;screwing with the taglist plugin. 
<br>
<br>Thanks to Markus Erlmann for pointing out that it caused problems.</td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4413">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.44</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2005-07-06</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">Fixed a bug with the &lt;C-c&gt; mapping after i broke it (again :().
<br>Thanks to Martin Stubenschrott for pointing this bug out!
<br></td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4404">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.43</b></td>
+    <td class="roweven" valign="top" nowrap><i>2005-06-30</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">Fixed a bug with visual commenting.
<br>Added a new option, go :help NERD_comment_whole_lines_in_v_mode for details. Thanks to&nbsp;&nbsp;jorge scandaliaris and&nbsp;&nbsp;Shufeng Zheng for their suggestions about this.</td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4393">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.42</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2005-06-26</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">Now, when any visual comments are made, the cursor is placed at the top left line/col of the visual selection block after the comment is done instead of on the top line at the first col. Thanks to Nick Brettell for complaining about this.
<br>
<br>Added support for .geek files hahahaha</td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4369">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.41</b></td>
+    <td class="roweven" valign="top" nowrap><i>2005-06-16</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">fixed a small bug with the &lt;C-c&gt; functionality when the script is configured to put extra spaces between the delimiters.</td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4292">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.40</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2005-05-18</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">Fixed a bug that was screwing up place holders with nested commenting when NERD_use_nested_comments_default option is set. Changed the left and right default place holders because the strings that were being used were sort of common in c/c++/java/... files. If you liked them the way they were you can just set them back with the NERD_lPlace and NERD_rPlace options.
<br>Thanx to Nick for complaining about the place holders and spotting the other bug :P
<br></td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4283">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.39</b></td>
+    <td class="roweven" valign="top" nowrap><i>2005-05-15</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">Fixed a retarded bug with the &lt;C-c&gt; mapping.
<br>Changed the &lt;leader&gt;ce mapping to have a default mapping of &lt;leader&gt;cA and added a new mapping that adds a comment delimiter to the start of the current line and inserts between the delimiters - the default mapping is &lt;leader&gt;cI (thats an uppercase i not a lowercase L).
<br>Fixed a bug that caused the script to spaz out if you tried to comment a file with no filetype.</td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4279">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.38</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2005-05-13</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">Added new functionality for when text is commented in normal visual mode (i.e not visual-block or visual-line). Now Nerd_comments comments out exactly the text that is selected in visual mode regardless of the type of visual mode you are in. 
<br>Thanks to Nick Brettell his ideas about this!
<br>
<br>Also, if you are commenting out text in visual or visual-block mode, NERD_comments will use multip-part delimiters is they are available so that the exact text that was selected will be exactly what is commented out - a new option has been added to turn off this behaviour (go :help NERD_allow_any_visual_delims_regexp for details).
<br>
<br>Fixed a couple of small bugs with the &lt;C-c&gt; mapping that prolly on one even noticed :P
<br>
<br>
<br>
<br></td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4260">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.37</b></td>
+    <td class="roweven" valign="top" nowrap><i>2005-05-09</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">Added a new mapping/menu item:
<br>Now when &lt;leader&gt;ce is pressed a comment is appended to the EOL and the cursor gets put in insert mode in the appropriate place to type the comment.
<br>
<br>Thanks to Litchi for emailing me with this idea :)
<br>
<br></td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4258">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.36</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2005-05-08</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">added lots more supported filetypes</td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4237">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.35</b></td>
+    <td class="roweven" valign="top" nowrap><i>2005-05-04</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">Added support for some new filetypes.
<br>Fixed a small bug with sexy comments.
<br>Fixed a bug with tabs that was not too serious but would screw up commenting of things like makefiles in a big way. Cheers to Nick Brettell for pointing this bug out!</td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4223">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.34</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2005-04-29</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">Add support for a couple more filetypes. Thanks to Sam R for emailing me about them!</td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4221">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.33</b></td>
     <td class="roweven" valign="top" nowrap><i>2005-04-29</i></td>
     <td class="roweven" valign="top" nowrap>6.0</td>
     <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">Add support for a couple more filetypes. Thanks to Sam R for emailing me about them!</td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4221">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.33</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2005-04-29</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">added a new mapping/menuItem that yanks the current line or selected text before commenting it out. This is handy if you wanna experiment with a piece of code... u just comment out the code and put a copy underneath it that you experiment on.</td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4201">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.32</b></td>
+    <td class="roweven" valign="top" width="2000">added a new mapping/menuItem that yanks the current line or selected text before commenting it out. This is handy if you wanna experiment with a piece of code... u just comment out the code and put a copy underneath it that you experiment on.</td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4201">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.32</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2005-04-25</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">now,&nbsp;&nbsp;if the current filetype matches NERD_use_sexy_coms_default_regexp then sexy comments will only be used if you are commenting more than one line with &lt;leader&gt;cc... i thought sexy comments on one line looked retarded. Of course you can still do one line sexy comments with &lt;leader&gt;cs</td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4198">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.31</b></td>
     <td class="roweven" valign="top" nowrap><i>2005-04-25</i></td>
     <td class="roweven" valign="top" nowrap>6.0</td>
     <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">now,&nbsp;&nbsp;if the current filetype matches NERD_use_sexy_coms_default_regexp then sexy comments will only be used if you are commenting more than one line with &lt;leader&gt;cc... i thought sexy comments on one line looked retarded. Of course you can still do one line sexy comments with &lt;leader&gt;cs</td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4198">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.31</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2005-04-25</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">Added a new option called NERD_use_sexy_coms_default_regexp. This option is used to tell NERD_comments to use sexy comments for certain filetypes by default when &lt;leader&gt;cc is pressed.
<br>
<br>Now if you edit a filetype that the script doesnt know about the warning it echos isnt so &quot;loud&quot;
<br>
<br>Thanks to Nguyen for suggesting these changes.</td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4195">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.30</b></td>
-    <td class="roweven" valign="top" nowrap><i>2005-04-22</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">Have finally implemented &quot;sexy&quot; comments. Go :help NERD_com_sexy_commenting to see what they are... i cant even be stuffed explaining.
<br>
<br>There is an option to make your sexy comments compact and use up less lines, go :help NERD_use_compact_sexy_com_regexp.
<br>
<br>Thanks to Nguyen for the idea... sorry it took so long dude :P</td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4181">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.29</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2005-04-18</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">There are a couple of new options to tell NERD_comments to always left align, right align or both align, comment delimiters when commenting multiple lines in visual mode. Go :help NERD_left_align_regexp, :help NERD_right_align_regexp. If the current filetype matches one or both of these regular expressions then hitting &lt;leader&gt;cc will automatically align the delimiters. 
<br>
<br>There are comment mappings/menu items which can be used to do aligned comments for any filetype. The mappings are &lt;leader&gt;cl &lt;leader&gt;cr and &lt;leader&gt;cb for left, right and both aligned comments respectively. These mappings and menu items assume that the comments will be nested if need be.
<br>
<br>Now, when uncommenting lines, the script looks for left and right delimiters separately so for eg: if you uncomment a line with one right delimiter on it (but no left delim) then it will still be removed.
<br>
<br>Fixed a couple of minor bugs.</td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4156">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.28</b></td>
-    <td class="roweven" valign="top" nowrap><i>2005-04-12</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">Added a menu with menu items for each of the scripts key mappings.
<br>Refactored the code a bit.
<br>Now, if&nbsp;&nbsp;you edit a filetype that vim doesnt know about the script wont crap out.
<br>Added support for a couple more filetypes.</td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4131">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.27</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2005-04-06</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">a few bug fixes</td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4122">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.26</b></td>
-    <td class="roweven" valign="top" nowrap><i>2005-04-05</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">Removed an echoerr that i forgot to remove from last release...</td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4119">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.25</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2005-04-04</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">Updated comment recognition heuristics. Modified the place holder system a bit so it is better. Did some refactoring to simplify the code a bit. Fixed some random bugs</td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4113">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.24</b></td>
+    <td class="roweven" valign="top" width="2000">Added a new option called NERD_use_sexy_coms_default_regexp. This option is used to tell NERD_comments to use sexy comments for certain filetypes by default when &lt;leader&gt;cc is pressed.
<br>
<br>Now if you edit a filetype that the script doesnt know about the warning it echos isnt so &quot;loud&quot;
<br>
<br>Thanks to Nguyen for suggesting these changes.</td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4195">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.30</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2005-04-22</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">Have finally implemented &quot;sexy&quot; comments. Go :help NERD_com_sexy_commenting to see what they are... i cant even be stuffed explaining.
<br>
<br>There is an option to make your sexy comments compact and use up less lines, go :help NERD_use_compact_sexy_com_regexp.
<br>
<br>Thanks to Nguyen for the idea... sorry it took so long dude :P</td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4181">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.29</b></td>
+    <td class="roweven" valign="top" nowrap><i>2005-04-18</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">There are a couple of new options to tell NERD_comments to always left align, right align or both align, comment delimiters when commenting multiple lines in visual mode. Go :help NERD_left_align_regexp, :help NERD_right_align_regexp. If the current filetype matches one or both of these regular expressions then hitting &lt;leader&gt;cc will automatically align the delimiters. 
<br>
<br>There are comment mappings/menu items which can be used to do aligned comments for any filetype. The mappings are &lt;leader&gt;cl &lt;leader&gt;cr and &lt;leader&gt;cb for left, right and both aligned comments respectively. These mappings and menu items assume that the comments will be nested if need be.
<br>
<br>Now, when uncommenting lines, the script looks for left and right delimiters separately so for eg: if you uncomment a line with one right delimiter on it (but no left delim) then it will still be removed.
<br>
<br>Fixed a couple of minor bugs.</td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4156">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.28</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2005-04-12</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">Added a menu with menu items for each of the scripts key mappings.
<br>Refactored the code a bit.
<br>Now, if&nbsp;&nbsp;you edit a filetype that vim doesnt know about the script wont crap out.
<br>Added support for a couple more filetypes.</td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4131">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.27</b></td>
+    <td class="roweven" valign="top" nowrap><i>2005-04-06</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">a few bug fixes</td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4122">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.26</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2005-04-05</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">Removed an echoerr that i forgot to remove from last release...</td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4119">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.25</b></td>
+    <td class="roweven" valign="top" nowrap><i>2005-04-04</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">Updated comment recognition heuristics. Modified the place holder system a bit so it is better. Did some refactoring to simplify the code a bit. Fixed some random bugs</td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4113">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.24</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2005-04-01</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">Fixed some bugs with place holders.
<br>
<br>Parameterised some of the place holder stuff to make it more customisable. There are now 3 more options: NERD_lPlace, NERD_rPlace and NERD_place_holder_regexp. These options are used to control the strings that are used as place holders and to specify the filetypes NERD_comments will use place holders for. Go :help and the name of each option for more info
<br>
<br>Now when a line is uncommented, the outtermost delimiters are removed regardless of whether they are the alternative delimiters for that filetype or not</td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4111">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.23</b></td>
     <td class="roweven" valign="top" nowrap><i>2005-04-01</i></td>
     <td class="roweven" valign="top" nowrap>6.0</td>
     <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">Fixed some bugs with place holders.
<br>
<br>Parameterised some of the place holder stuff to make it more customisable. There are now 3 more options: NERD_lPlace, NERD_rPlace and NERD_place_holder_regexp. These options are used to control the strings that are used as place holders and to specify the filetypes NERD_comments will use place holders for. Go :help and the name of each option for more info
<br>
<br>Now when a line is uncommented, the outtermost delimiters are removed regardless of whether they are the alternative delimiters for that filetype or not</td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4111">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.23</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2005-04-01</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">Added support for place holders when nesting comments with left AND right delimiters.
<br>Now if you go &lt;leader&gt;cn on a line of already commented code (eg: /* int foo */), the current delimiters will be swapped for place holders so the example line will become: /*[+ int foo +]*/ where [+ and +] are the place holders.
<br>Also, i fixed a pretty major bug with visual-block commenting</td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4088">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.22</b></td>
-    <td class="roweven" valign="top" nowrap><i>2005-03-28</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">Fixed the syntax highlighting probs with h files.
<br>
<br>There is a new option which is used to place a space after the left delimiter and before the right delimiter. The option is set to a regular expression and any filetypes that match this expression have the aforementioned spaces added when commenting. Go :help NERD_space_delim_filetype_regexp for details.
<br>
<br>Thanks to Nguyen for pointing these emailing me about these things!!
<br>
<br></td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4082">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.21</b></td>
+    <td class="roweven" valign="top" width="2000">Added support for place holders when nesting comments with left AND right delimiters.
<br>Now if you go &lt;leader&gt;cn on a line of already commented code (eg: /* int foo */), the current delimiters will be swapped for place holders so the example line will become: /*[+ int foo +]*/ where [+ and +] are the place holders.
<br>Also, i fixed a pretty major bug with visual-block commenting</td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4088">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.22</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2005-03-28</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">Fixed the syntax highlighting probs with h files.
<br>
<br>There is a new option which is used to place a space after the left delimiter and before the right delimiter. The option is set to a regular expression and any filetypes that match this expression have the aforementioned spaces added when commenting. Go :help NERD_space_delim_filetype_regexp for details.
<br>
<br>Thanks to Nguyen for pointing these emailing me about these things!!
<br>
<br></td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4082">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.21</b></td>
+    <td class="roweven" valign="top" nowrap><i>2005-03-26</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">fixed some bugs.
<br>added support for more filetypes</td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4081">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.20</b></td>
     <td class="rowodd" valign="top" nowrap><i>2005-03-26</i></td>
     <td class="rowodd" valign="top" nowrap>6.0</td>
     <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">fixed some bugs.
<br>added support for more filetypes</td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4081">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.20</b></td>
-    <td class="roweven" valign="top" nowrap><i>2005-03-26</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">did some refactoring
<br>
<br>added support for more filetypes</td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4068">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.19</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2005-03-24</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">If the filetype is unkown to the script it now looks at &commentstring to get the comment delimiters for that filetype</td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4064">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.18</b></td>
+    <td class="rowodd" valign="top" width="2000">did some refactoring
<br>
<br>added support for more filetypes</td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4068">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.19</b></td>
+    <td class="roweven" valign="top" nowrap><i>2005-03-24</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">If the filetype is unkown to the script it now looks at &commentstring to get the comment delimiters for that filetype</td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4064">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.18</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2005-03-23</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">Block commenting is done automatically now... if you select some text in visual-block mode and go &lt;leader&gt;cc it will&nbsp;&nbsp;behave the same as if you pushed &lt;leader&gt;cb before.
<br>
<br>Similarly, if you select some text with visual-block mode and go &lt;leader&gt;cn it wll behave as if you had pushed &lt;leader&gt;cB
<br>
<br>the &lt;leader&gt;cb and &lt;leader&gt;cB mappings have now been removed cos they are redundant
<br>
<br>The comment recognition heuristics have been updated a little bit so NERD_comments is now a bit better at recognising comment delimiters</td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4062">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.17</b></td>
     <td class="roweven" valign="top" nowrap><i>2005-03-23</i></td>
     <td class="roweven" valign="top" nowrap>6.0</td>
     <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">Block commenting is done automatically now... if you select some text in visual-block mode and go &lt;leader&gt;cc it will&nbsp;&nbsp;behave the same as if you pushed &lt;leader&gt;cb before.
<br>
<br>Similarly, if you select some text with visual-block mode and go &lt;leader&gt;cn it wll behave as if you had pushed &lt;leader&gt;cB
<br>
<br>the &lt;leader&gt;cb and &lt;leader&gt;cB mappings have now been removed cos they are redundant
<br>
<br>The comment recognition heuristics have been updated a little bit so NERD_comments is now a bit better at recognising comment delimiters</td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4062">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.17</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2005-03-23</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">block commenting is much better now</td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4047">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.16</b></td>
-    <td class="roweven" valign="top" nowrap><i>2005-03-21</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">umm, the script has been changed a lot...
<br>- the keymappings and options are different and there is waaaay more of them
<br>- there is now way more functionality provided by the script
<br>- there is a help file that is self-installing and fully contained in the script (i stole the installation function from the vimspell plugin (thx vimspell!!))
<br>- the internals of the script are a bit more sophisticated in the way they recognise comments (they have to be cos of the new functionality) but it is not perfect at recognising comment delimiters (infact it only uses a set of heuristics) 
<br></td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4026">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.15</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2005-03-15</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">Changed the guts of the script a bit.
<br>
<br>Now the imap for &lt;C-c&gt; is done automatically which means that adding support for commenting another language is really easy and takes just one line!
<br>
<br>Haskell and lisp are now supported
<br>
<br>There is a new function that is designed to handle programming languages with more than one commenting style which is a bit of a hack but works well. 
<br>
<br>Theres another option NERD_use_c_style_prolog_comments
<br></td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=3983">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.14</b></td>
-    <td class="roweven" valign="top" nowrap><i>2005-03-09</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">Did a bit of refactoring... no functionality changes.
<br>
<br>Thanks to Matthew Hawkins for pointing out the code repitition :P</td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=3976">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.13</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2005-03-07</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">- added a new option: NERD_use_c_comments_for_h_files. This option is needed cos
<br>&nbsp;&nbsp;h files are used with c files which only allow /**/ comments, but they are also
<br>&nbsp;&nbsp;used with c++/c# which allow // comments which are illegal in c
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<br>- the option NERD_use_slash_star_java_cpp_comments now affects c# files as well.
<br>&nbsp;&nbsp;This means that c# files are now commented like c++/java files
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<br>- added a new autocommand which sets the filetype to h if we enter a buffer with
<br>&nbsp;&nbsp;an h file in it. This was needed cos some versions of vim dont seem to have an h
<br>&nbsp;&nbsp;filetype. Some versions of vim treat h files as cpp files which screws everything up!!!
<br></td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=3971">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.12</b></td>
-    <td class="roweven" valign="top" nowrap><i>2005-03-06</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">Fixed a bug with forced commenting (&lt;leader&gt;&lt;leader&gt;c)</td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=3967">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.11</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2005-03-05</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">Some minor bug fixes and improvements</td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=3957">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.10</b></td>
-    <td class="roweven" valign="top" nowrap><i>2005-03-03</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">An additional mapping has been added:
<br>&lt;leader&gt;&lt;leader&gt;c will now comment out the selected lines and will force nested commenting (provided the comment style has no right delimiter - to avoid compiler errors). Note that if the option NERD_allow_nested_comments is set then &lt;leader&gt;c performs this behaviour anyway...
<br></td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=3946">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.09</b></td>
+    <td class="roweven" valign="top" width="2000">block commenting is much better now</td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=4047">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.16</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2005-03-21</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">umm, the script has been changed a lot...
<br>- the keymappings and options are different and there is waaaay more of them
<br>- there is now way more functionality provided by the script
<br>- there is a help file that is self-installing and fully contained in the script (i stole the installation function from the vimspell plugin (thx vimspell!!))
<br>- the internals of the script are a bit more sophisticated in the way they recognise comments (they have to be cos of the new functionality) but it is not perfect at recognising comment delimiters (infact it only uses a set of heuristics) 
<br></td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=4026">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.15</b></td>
+    <td class="roweven" valign="top" nowrap><i>2005-03-15</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">Changed the guts of the script a bit.
<br>
<br>Now the imap for &lt;C-c&gt; is done automatically which means that adding support for commenting another language is really easy and takes just one line!
<br>
<br>Haskell and lisp are now supported
<br>
<br>There is a new function that is designed to handle programming languages with more than one commenting style which is a bit of a hack but works well. 
<br>
<br>Theres another option NERD_use_c_style_prolog_comments
<br></td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=3983">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.14</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2005-03-09</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">Did a bit of refactoring... no functionality changes.
<br>
<br>Thanks to Matthew Hawkins for pointing out the code repitition :P</td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=3976">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.13</b></td>
+    <td class="roweven" valign="top" nowrap><i>2005-03-07</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">- added a new option: NERD_use_c_comments_for_h_files. This option is needed cos
<br>&nbsp;&nbsp;h files are used with c files which only allow /**/ comments, but they are also
<br>&nbsp;&nbsp;used with c++/c# which allow // comments which are illegal in c
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<br>- the option NERD_use_slash_star_java_cpp_comments now affects c# files as well.
<br>&nbsp;&nbsp;This means that c# files are now commented like c++/java files
<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
<br>- added a new autocommand which sets the filetype to h if we enter a buffer with
<br>&nbsp;&nbsp;an h file in it. This was needed cos some versions of vim dont seem to have an h
<br>&nbsp;&nbsp;filetype. Some versions of vim treat h files as cpp files which screws everything up!!!
<br></td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=3971">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.12</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2005-03-06</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">Fixed a bug with forced commenting (&lt;leader&gt;&lt;leader&gt;c)</td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=3967">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.11</b></td>
+    <td class="roweven" valign="top" nowrap><i>2005-03-05</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">Some minor bug fixes and improvements</td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=3957">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.10</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2005-03-03</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">An additional mapping has been added:
<br>&lt;leader&gt;&lt;leader&gt;c will now comment out the selected lines and will force nested commenting (provided the comment style has no right delimiter - to avoid compiler errors). Note that if the option NERD_allow_nested_comments is set then &lt;leader&gt;c performs this behaviour anyway...
<br></td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=3946">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.09</b></td>
+    <td class="roweven" valign="top" nowrap><i>2005-03-01</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">- there is a new option NERD_allow_nested_comments which will allow nested comments provided that there is no right delimiter for that commenting style. This should prevent nested commenting errors.
<br>
<br>eg. the option will allow nested // style java comments (which will not produce compiler errors) but will not allow nested /* */ style c comments (which would cause compiler errors). 
<br>The reason this feature has been added is the following: Say that you have commented out an entire function which already has comments in it... when you uncomment out the function, errors will result because of the comments that were already there that have been uncommented. This way those comments will become nested comments and the function will be exactly as it was before you commented it.
<br>
<br>- the option NERD_double_slash_java_comments has been changed to NERD_use_star_slash_java_cpp_comments. Now, when editing java/c++ file&nbsp;&nbsp;// style comments are used by default unless this option is set. This is to make it easier for ppl who want to use the nested comments option as well...</td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=3944">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.08</b></td>
     <td class="rowodd" valign="top" nowrap><i>2005-03-01</i></td>
     <td class="rowodd" valign="top" nowrap>6.0</td>
     <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">- there is a new option NERD_allow_nested_comments which will allow nested comments provided that there is no right delimiter for that commenting style. This should prevent nested commenting errors.
<br>
<br>eg. the option will allow nested // style java comments (which will not produce compiler errors) but will not allow nested /* */ style c comments (which would cause compiler errors). 
<br>The reason this feature has been added is the following: Say that you have commented out an entire function which already has comments in it... when you uncomment out the function, errors will result because of the comments that were already there that have been uncommented. This way those comments will become nested comments and the function will be exactly as it was before you commented it.
<br>
<br>- the option NERD_double_slash_java_comments has been changed to NERD_use_star_slash_java_cpp_comments. Now, when editing java/c++ file&nbsp;&nbsp;// style comments are used by default unless this option is set. This is to make it easier for ppl who want to use the nested comments option as well...</td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=3944">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.08</b></td>
-    <td class="roweven" valign="top" nowrap><i>2005-03-01</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">- Massive refactoring which has significantly reduced the size of the script
<br>- Corrections to some of the comment delimiters used
<br>- also the filetype event used in the auto commands that turn on the mappings has been capitalised to FileType to fix a problem with some versions of vim
<br>- version number is now in the script
<br>
<br>All of this was done by Matthew Hawkins... THANK YOU VERY MUCH !!! :) </td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=3939">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.07</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2005-02-28</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">- Now, when commenting lines of code, lines that are already commented out are not commented again
<br>- when commenting code, blank lines (or lines containing only spaces and/or tabs) are not commented
<br>- an option has been added which lets you have // style java comments instead of /* */ java comments just stick 'let NERD_double_slash_java_comments=1' in your vimrc
<br></td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=3928">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.06</b></td>
+    <td class="rowodd" valign="top" width="2000">- Massive refactoring which has significantly reduced the size of the script
<br>- Corrections to some of the comment delimiters used
<br>- also the filetype event used in the auto commands that turn on the mappings has been capitalised to FileType to fix a problem with some versions of vim
<br>- version number is now in the script
<br>
<br>All of this was done by Matthew Hawkins... THANK YOU VERY MUCH !!! :) </td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=3939">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.07</b></td>
+    <td class="roweven" valign="top" nowrap><i>2005-02-28</i></td>
+    <td class="roweven" valign="top" nowrap>6.0</td>
+    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="roweven" valign="top" width="2000">- Now, when commenting lines of code, lines that are already commented out are not commented again
<br>- when commenting code, blank lines (or lines containing only spaces and/or tabs) are not commented
<br>- an option has been added which lets you have // style java comments instead of /* */ java comments just stick 'let NERD_double_slash_java_comments=1' in your vimrc
<br></td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=3928">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.06</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2005-02-27</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">Now the left comment delimiter is placed in the position that the leftmost character occupies instead of at the start of the line. This means that indenting is preserved</td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=3924">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.05</b></td>
     <td class="roweven" valign="top" nowrap><i>2005-02-27</i></td>
     <td class="roweven" valign="top" nowrap>6.0</td>
     <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">Now the left comment delimiter is placed in the position that the leftmost character occupies instead of at the start of the line. This means that indenting is preserved</td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=3924">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.05</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2005-02-27</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">fixed bug for removing comment delimiters
<br>
<br>added support for shite loads more filetypes</td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=3915">NERD_comments.vim</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.04</b></td>
+    <td class="roweven" valign="top" width="2000">fixed bug for removing comment delimiters
<br>
<br>added support for shite loads more filetypes</td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=3915">NERD_comments.vim</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.04</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2005-02-26</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">The functions that turn on the comment mappings are now local to the script</td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=3914">NERD_comments.vim</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.03</b></td>
     <td class="roweven" valign="top" nowrap><i>2005-02-26</i></td>
     <td class="roweven" valign="top" nowrap>6.0</td>
     <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">The functions that turn on the comment mappings are now local to the script</td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=3914">NERD_comments.vim</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.03</b></td>
-    <td class="rowodd" valign="top" nowrap><i>2005-02-26</i></td>
-    <td class="rowodd" valign="top" nowrap>6.0</td>
-    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">Now the comment mappings are loaded automatically.</td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=3913">NERD_comments.vim.gz</a></td>
-    <td class="roweven" valign="top" nowrap><b>1.02</b></td>
+    <td class="roweven" valign="top" width="2000">Now the comment mappings are loaded automatically.</td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=3913">NERD_comments.vim.gz</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1.02</b></td>
+    <td class="rowodd" valign="top" nowrap><i>2005-02-25</i></td>
+    <td class="rowodd" valign="top" nowrap>6.0</td>
+    <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
+    <td class="rowodd" valign="top" width="2000">fixed some bugs. Comments now work for c. Also the hlsearch option is not potentially changed when the comment mappings are used</td>
+</tr>
+<tr>
+        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=3908">NERD_comments.vim.gz</a></td>
+    <td class="roweven" valign="top" nowrap><b>1.01</b></td>
     <td class="roweven" valign="top" nowrap><i>2005-02-25</i></td>
     <td class="roweven" valign="top" nowrap>6.0</td>
     <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">fixed some bugs. Comments now work for c. Also the hlsearch option is not potentially changed when the comment mappings are used</td>
-</tr>
-<tr>
-        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=3908">NERD_comments.vim.gz</a></td>
-    <td class="rowodd" valign="top" nowrap><b>1.01</b></td>
+    <td class="roweven" valign="top" width="2000">err, various corrections to comments</td>
+</tr>
+<tr>
+        <td class="rowodd" valign="top" nowrap><a href="download_script.php?src_id=3907">NERD_comments.vim.gz</a></td>
+    <td class="rowodd" valign="top" nowrap><b>1</b></td>
     <td class="rowodd" valign="top" nowrap><i>2005-02-25</i></td>
     <td class="rowodd" valign="top" nowrap>6.0</td>
     <td class="rowodd" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="rowodd" valign="top" width="2000">err, various corrections to comments</td>
-</tr>
-<tr>
-        <td class="roweven" valign="top" nowrap><a href="download_script.php?src_id=3907">NERD_comments.vim.gz</a></td>
-    <td class="roweven" valign="top" nowrap><b>1</b></td>
-    <td class="roweven" valign="top" nowrap><i>2005-02-25</i></td>
-    <td class="roweven" valign="top" nowrap>6.0</td>
-    <td class="roweven" valign="top"><i><a href="/account/profile.php?user_id=7006">Marty Grenfell</a></i></td>
-    <td class="roweven" valign="top" width="2000">Initial upload</td>
+    <td class="rowodd" valign="top" width="2000">Initial upload</td>
 </tr>
 </table>
 <!-- finish off the framework -->
@@ -977,6 +1001,7 @@
         </tr>
       </table>
     </td>
+
   </tr>
 </table>
 

Modified: trunk/packages/vim-scripts/plugin/NERD_commenter.vim
URL: http://svn.debian.org/wsvn/pkg-vim/trunk/packages/vim-scripts/plugin/NERD_commenter.vim?rev=1286&op=diff
==============================================================================
--- trunk/packages/vim-scripts/plugin/NERD_commenter.vim (original)
+++ trunk/packages/vim-scripts/plugin/NERD_commenter.vim Fri Dec  5 16:17:51 2008
@@ -2,8 +2,8 @@
 " File:        NERD_commenter.vim
 " Description: vim global plugin that provides easy code commenting
 " Maintainer:  Martin Grenfell <martin_grenfell at msn dot com>
-" Version:     2.1.16
-" Last Change: 27 June, 2008
+" Version:     2.2.1
+" Last Change: 13th November, 2008
 " License:     This program is free software. It comes without any warranty,
 "              to the extent permitted by applicable law. You can redistribute
 "              it and/or modify it under the terms of the Do What The Fuck You
@@ -59,6 +59,7 @@
 call s:InitVariable("g:NERDBlockComIgnoreEmpty", 0)
 call s:InitVariable("g:NERDCommentWholeLinesInVMode", 0)
 call s:InitVariable("g:NERDCompactSexyComs", 0)
+call s:InitVariable("g:NERDCreateDefaultMappings", 1)
 call s:InitVariable("g:NERDDefaultNesting", 1)
 call s:InitVariable("g:NERDMenuMode", 3)
 call s:InitVariable("g:NERDLPlace", "[>")
@@ -70,24 +71,8 @@
 call s:InitVariable("g:NERDSpaceDelims", 0)
 call s:InitVariable("g:NERDDelimiterRequests", 1)
 
-call s:InitVariable("g:NERDMapleader", ',c')
-
-call s:InitVariable("g:NERDAltComMap", g:NERDMapleader . 'a')
-call s:InitVariable("g:NERDAppendComMap", g:NERDMapleader . 'A')
-call s:InitVariable("g:NERDComAlignBothMap", g:NERDMapleader . 'b')
-call s:InitVariable("g:NERDComAlignLeftMap", g:NERDMapleader . 'l')
-call s:InitVariable("g:NERDComAlignRightMap", g:NERDMapleader . 'r')
-call s:InitVariable("g:NERDComInInsertMap", '<C-c>')
-call s:InitVariable("g:NERDComLineInvertMap", g:NERDMapleader . 'i')
-call s:InitVariable("g:NERDComLineMap", g:NERDMapleader . 'c')
-call s:InitVariable("g:NERDComLineNestMap", g:NERDMapleader . 'n')
-call s:InitVariable("g:NERDComLineSexyMap", g:NERDMapleader . 's')
-call s:InitVariable("g:NERDComLineToggleMap", g:NERDMapleader . '<space>')
-call s:InitVariable("g:NERDComLineMinimalMap", g:NERDMapleader . 'm')
-call s:InitVariable("g:NERDComLineYankMap", g:NERDMapleader . 'y')
-call s:InitVariable("g:NERDComToEOLMap", g:NERDMapleader . '$')
-call s:InitVariable("g:NERDPrependComMap", g:NERDMapleader . 'I')
-call s:InitVariable("g:NERDUncomLineMap", g:NERDMapleader . 'u')
+
+
 let s:NERDFileNameEscape="[]#*$%'\" ?`!&();<>\\"
 
 " Section: Comment mapping functions, autocommands and commands {{{1
@@ -95,21 +80,16 @@
 " Section: Comment enabler autocommands {{{2
 " ============================================================================
 
-if !exists("nerd_autocmds_loaded")
-    let nerd_autocmds_loaded=1
-
-    augroup commentEnablers
-
-        "if the user enters a buffer or reads a buffer then we gotta set up
-        "the comment delimiters for that new filetype
-        autocmd BufEnter,BufRead * :call s:SetUpForNewFiletype(&filetype, 0)
-
-        "if the filetype of a buffer changes, force the script to reset the
-        "delims for the buffer
-        autocmd Filetype * :call s:SetUpForNewFiletype(&filetype, 1)
-    augroup END
-
-endif
+augroup commentEnablers
+
+    "if the user enters a buffer or reads a buffer then we gotta set up
+    "the comment delimiters for that new filetype
+    autocmd BufEnter,BufRead * :call s:SetUpForNewFiletype(&filetype, 0)
+
+    "if the filetype of a buffer changes, force the script to reset the
+    "delims for the buffer
+    autocmd Filetype * :call s:SetUpForNewFiletype(&filetype, 1)
+augroup END
 
 
 " Function: s:SetUpForNewFiletype(filetype) function {{{2
@@ -144,6 +124,8 @@
     elseif a:filetype == "abc"
         call s:MapDelimiters('%', '')
     elseif a:filetype == "acedb"
+        call s:MapDelimitersWithAlternative('//','', '/*','*/')
+    elseif a:filetype == "actionscript"
         call s:MapDelimitersWithAlternative('//','', '/*','*/')
     elseif a:filetype == "ada"
         call s:MapDelimitersWithAlternative('--','', '--  ', '')
@@ -163,6 +145,10 @@
         call s:MapDelimiters('#', '')
     elseif a:filetype == "apachestyle"
         call s:MapDelimiters('#', '')
+    elseif a:filetype == "asciidoc"
+        call s:MapDelimiters('//', '')
+    elseif a:filetype == "applescript"
+        call s:MapDelimitersWithAlternative('--', '', '(*', '*)')
     elseif a:filetype == "asm68k"
         call s:MapDelimiters(';', '')
     elseif a:filetype == "asm"
@@ -182,7 +168,7 @@
     elseif a:filetype == "autoit"
         call s:MapDelimiters(';','')
     elseif a:filetype == "automake"
-        call s:MapDelimitersWithAlternative('#','', 'dnl ', '')
+        call s:MapDelimiters('##','')
     elseif a:filetype == "ave"
         call s:MapDelimiters("'",'')
     elseif a:filetype == "awk"
@@ -209,6 +195,8 @@
         call s:MapDelimiters('', '')
     elseif a:filetype == "caos"
         call s:MapDelimiters('*', '')
+    elseif a:filetype == "calibre"
+        call s:MapDelimiters('//','')
     elseif a:filetype == "catalog"
         call s:MapDelimiters('--','--')
     elseif a:filetype == "c"
@@ -227,6 +215,8 @@
         call s:MapDelimitersWithAlternative('//','', '/*','*/')
     elseif a:filetype == "clipper"
         call s:MapDelimitersWithAlternative('//','', '/*','*/')
+    elseif a:filetype == "clojure"
+        call s:MapDelimiters(';', '')
     elseif a:filetype == "cmake"
         call s:MapDelimiters('#','')
     elseif a:filetype == "cobol"
@@ -235,6 +225,8 @@
         call s:MapDelimiters('#', '')
     elseif a:filetype == "config"
         call s:MapDelimiters('dnl ', '')
+    elseif a:filetype == "conkyrc"
+        call s:MapDelimiters('#', '')
     elseif a:filetype == "context"
         call s:MapDelimiters('%','')
     elseif a:filetype == "cpp"
@@ -259,6 +251,8 @@
         call s:MapDelimiters('CVS:','')
     elseif a:filetype == "CVSAnnotate"
         call s:MapDelimiters('','')
+    elseif a:filetype == "CVScommit"
+        call s:MapDelimiters('','')
     elseif a:filetype == "d"
         call s:MapDelimitersWithAlternative('//','', '/*','*/')
     elseif a:filetype == "dcl"
@@ -351,6 +345,8 @@
         call s:MapDelimiters('--', '')
     elseif a:filetype == "geek"
         call s:MapDelimiters('GEEK_COMMENT:', '')
+    elseif a:filetype == "genshi"
+        call s:MapDelimitersWithAlternative('<!--','-->', '{#', '#}')
     elseif a:filetype == "gentoo-conf-d"
         call s:MapDelimiters('#', '')
     elseif a:filetype == "gentoo-env-d"
@@ -365,14 +361,18 @@
         call s:MapDelimiters('#', '')
     elseif a:filetype == 'gentoo-package-use'
         call s:MapDelimiters('#', '')
+    elseif a:filetype == 'git'
+        call s:MapDelimiters('', '')
     elseif a:filetype == 'gitAnnotate'
         call s:MapDelimiters('', '')
     elseif a:filetype == 'gitcommit'
-        call s:MapDelimiters('', '')
+        call s:MapDelimiters('#', '')
     elseif a:filetype == 'gitconfig'
         call s:MapDelimiters(';', '')
     elseif a:filetype == 'gitdiff'
         call s:MapDelimiters('', '')
+    elseif a:filetype == 'gitrebase'
+        call s:MapDelimiters('#', '')
     elseif a:filetype == "gnuplot"
         call s:MapDelimiters('#','')
     elseif a:filetype == "groovy"
@@ -384,18 +384,20 @@
     elseif a:filetype == "gtkrc"
         call s:MapDelimiters('#', '')
     elseif a:filetype == "haskell"
-        call s:MapDelimitersWithAlternative('--','', '{-', '-}')
+        call s:MapDelimitersWithAlternative('{-','-}', '--', '')
     elseif a:filetype == "hb"
         call s:MapDelimiters('#', '')
     elseif a:filetype == "h"
         call s:MapDelimitersWithAlternative('//','', '/*','*/')
     elseif a:filetype == "haml"
-        call s:MapDelimiters('/', '')
+        call s:MapDelimitersWithAlternative('-#', '', '/', '')
     elseif a:filetype == "help"
         call s:MapDelimiters('"','')
     elseif a:filetype == "hercules"
         call s:MapDelimitersWithAlternative('//','', '/*','*/')
     elseif a:filetype == "hog"
+        call s:MapDelimiters('#', '')
+    elseif a:filetype == "hostsaccess"
         call s:MapDelimiters('#', '')
     elseif a:filetype == "html"
         call s:MapDelimitersWithAlternative('<!--','-->', '//', '')
@@ -465,6 +467,8 @@
         call s:MapDelimitersWithAlternative(';','', '#|', '|#')
     elseif a:filetype == "lite"
         call s:MapDelimiters('/*','*/')
+    elseif a:filetype == "llvm"
+        call s:MapDelimiters(';','')
     elseif a:filetype == "lookupfile"
         call s:MapDelimiters('', '')
     elseif a:filetype == "lotos"
@@ -487,8 +491,14 @@
         call s:MapDelimiters('dnl ', '')
     elseif a:filetype == "mail"
         call s:MapDelimiters('> ','')
+    elseif a:filetype == "mailcap"
+        call s:MapDelimiters('#','')
     elseif a:filetype == "make"
         call s:MapDelimiters('#','')
+    elseif a:filetype == "mako"
+        call s:MapDelimiters('##', '')
+    elseif a:filetype == "man"
+        call s:MapDelimiters('."', '')
     elseif a:filetype == "map"
         call s:MapDelimiters('%', '')
     elseif a:filetype == "maple"
@@ -549,6 +559,8 @@
         call s:MapDelimiters('', '')
     elseif a:filetype == "netrw"
         call s:MapDelimiters('', '')
+    elseif a:filetype == "newlisp"
+        call s:MapDelimiters(';','')
     elseif a:filetype == "nqc"
         call s:MapDelimiters('/*','*/')
     elseif a:filetype == "nroff"
@@ -558,6 +570,8 @@
     elseif a:filetype == "objc"
         call s:MapDelimitersWithAlternative('//','', '/*','*/')
     elseif a:filetype == "objcpp"
+        call s:MapDelimitersWithAlternative('//','', '/*','*/')
+    elseif a:filetype == "objj"
         call s:MapDelimitersWithAlternative('//','', '/*','*/')
     elseif a:filetype == "ocaml"
         call s:MapDelimiters('(*','*)')
@@ -615,6 +629,8 @@
         call s:MapDelimiters('#', '')
     elseif a:filetype == "postscr"
         call s:MapDelimiters('%', '')
+    elseif a:filetype == "potwiki"
+        call s:MapDelimiters('', '')
     elseif a:filetype == "pov"
         call s:MapDelimitersWithAlternative('//','', '/*','*/')
     elseif a:filetype == "povini"
@@ -623,12 +639,16 @@
         call s:MapDelimiters('%', '')
     elseif a:filetype == "ppwiz"
         call s:MapDelimiters(';;', '')
+    elseif a:filetype == "processing"
+        call s:MapDelimitersWithAlternative('//','', '/*','*/')
     elseif a:filetype == "procmail"
         call s:MapDelimiters('#', '')
     elseif a:filetype == "progress"
         call s:MapDelimiters('/*','*/')
     elseif a:filetype == "prolog"
         call s:MapDelimitersWithAlternative('%','','/*','*/')
+    elseif a:filetype == "ps1"
+        call s:MapDelimiters('#', '')
     elseif a:filetype == "psf"
         call s:MapDelimiters('#', '')
     elseif a:filetype == "ptcap"
@@ -707,6 +727,8 @@
         call s:MapDelimiters('<!--','-->')
     elseif a:filetype == "sicad"
         call s:MapDelimiters('*', '')
+    elseif a:filetype == "sieve"
+        call s:MapDelimiters('#', '')
     elseif a:filetype == "simula"
         call s:MapDelimitersWithAlternative('%', '', '--', '')
     elseif a:filetype == "sinda"
@@ -759,6 +781,8 @@
         call s:MapDelimiters('#', '')
     elseif a:filetype == "st"
         call s:MapDelimiters('"','')
+    elseif a:filetype == "stata"
+        call s:MapDelimiters('/*','*/')
     elseif a:filetype == "stp"
         call s:MapDelimiters('--', '')
     elseif a:filetype == "strace"
@@ -769,11 +793,17 @@
         call s:MapDelimiters('','')
     elseif a:filetype == "svn"
         call s:MapDelimiters('','')
+    elseif a:filetype == "SVNannotate"
+        call s:MapDelimiters('','')
     elseif a:filetype == "SVNAnnotate"
+        call s:MapDelimiters('','')
+    elseif a:filetype == "SVNcommit"
         call s:MapDelimiters('','')
     elseif a:filetype == "SVNcommitlog"
         call s:MapDelimiters('','')
     elseif a:filetype == "SVNdiff"
+        call s:MapDelimiters('','')
+    elseif a:filetype == "SVNinfo"
         call s:MapDelimiters('','')
     elseif a:filetype == "systemverilog"
         call s:MapDelimitersWithAlternative('//','', '/*','*/')
@@ -815,6 +845,8 @@
         call s:MapDelimiters('#', '')
     elseif a:filetype == "tssgm"
         call s:MapDelimiters("comment = '","'")
+    elseif a:filetype == "txt2tags"
+        call s:MapDelimiters('%','')
     elseif a:filetype == "uc"
         call s:MapDelimitersWithAlternative('//','', '/*','*/')
     elseif a:filetype == "uil"
@@ -889,6 +921,8 @@
         call s:MapDelimiters('/*','*/')
     elseif a:filetype == "yaml"
         call s:MapDelimiters('#','')
+    elseif a:filetype == "xquery"
+        call s:MapDelimiters('(:',':)')
     elseif a:filetype == "z8a"
         call s:MapDelimiters(';', '')
 
@@ -1002,13 +1036,13 @@
 
     "stick the delimiters down at the end of the line. We have to format the
     "comment with spaces as appropriate
-    execute ":normal " . insOrApp . (isLineEmpty ? '' : ' ') . left . right . " "
+    execute ":normal! " . insOrApp . (isLineEmpty ? '' : ' ') . left . right . " "
 
     " if there is a right delimiter then we gotta move the cursor left
     " by the len of the right delimiter so we insert between the delimiters
     if lenRight > 0
         let leftMoveAmount = lenRight
-        execute ":normal " . leftMoveAmount . "h"
+        execute ":normal! " . leftMoveAmount . "h"
     endif
     startinsert
 endfunction
@@ -1149,10 +1183,9 @@
 " Args:
 "   -forceNested: a flag indicating whether the called is requesting the comment
 "    to be nested if need be
-"   -alignRight/alignLeft: 0/1 if the comments delimiters should/shouldnt be
-"    aligned left/right
+"   -align: should be "left" or "both" or "none"
 "   -firstLine/lastLine: the top and bottom lines to comment
-function s:CommentLines(forceNested, alignLeft, alignRight, firstLine, lastLine)
+function s:CommentLines(forceNested, align, firstLine, lastLine)
     " we need to get the left and right indexes of the leftmost char in the
     " block of of lines and the right most char so that we can do alignment of
     " the delimiters if the user has specified
@@ -1184,12 +1217,12 @@
 
             " check if we can comment this line
             if !isCommented || g:NERDUsePlaceHolders || s:Multipart()
-                if a:alignLeft
+                if a:align == "left" || a:align == "both"
                     let theLine = s:AddLeftDelimAligned(s:GetLeft(0,1,0), theLine, leftAlignIndx)
                 else
                     let theLine = s:AddLeftDelim(s:GetLeft(0,1,0), theLine)
                 endif
-                if a:alignRight
+                if a:align == "both"
                     let theLine = s:AddRightDelimAligned(s:GetRight(0,1,0), theLine, rightAlignIndx)
                 else
                     let theLine = s:AddRightDelim(s:GetRight(0,1,0), theLine)
@@ -1438,7 +1471,7 @@
         let topOfRange = a:topLine+1
         let bottomOfRange = a:bottomLine-1
         if topOfRange <= bottomOfRange
-            call s:CommentLines(a:forceNested, 0, 0, topOfRange, bottomOfRange)
+            call s:CommentLines(a:forceNested, "none", topOfRange, bottomOfRange)
         endif
 
         "comment the bottom line
@@ -1496,15 +1529,15 @@
     endwhile
 endfunction
 
-" Function: NERDComment(isVisual, alignLeft, alignRight, type) function {{{2
+" Function: NERDComment(isVisual, type) function {{{2
 " This function is a Wrapper for the main commenting functions
 "
 " Args:
 "   -isVisual: a flag indicating whether the comment is requested in visual
 "    mode or not
 "   -type: the type of commenting requested. Can be 'sexy', 'invert',
-"    'minimal', 'toggle', 'alignLeft', 'alignRight', 'alignBoth', 'norm',
-"    'nested', 'toEOL', 'prepend', 'append', 'insert', 'uncomment', 'yank'
+"    'minimal', 'toggle', 'alignLeft', 'alignBoth', 'norm',
+"    'nested', 'toEOL', 'append', 'insert', 'uncomment', 'yank'
 function! NERDComment(isVisual, type) range
     " we want case sensitivity when commenting
     let oldIgnoreCase = &ignorecase
@@ -1530,13 +1563,17 @@
         elseif a:isVisual && visualmode() == "v" && (g:NERDCommentWholeLinesInVMode==0 || (g:NERDCommentWholeLinesInVMode==2 && s:HasMultipartDelims()))
             call s:CommentRegion(firstLine, firstCol, lastLine, lastCol, forceNested)
         else
-            call s:CommentLines(forceNested, 0, 0, firstLine, lastLine)
-        endif
-
-    elseif a:type == 'alignLeft' || a:type == 'alignRight' || a:type == 'alignBoth'
-        let alignLeft = (a:type == 'alignLeft' || a:type == 'alignBoth')
-        let alignRight = (a:type == 'alignRight' || a:type == 'alignBoth')
-        call s:CommentLines(forceNested, alignLeft, alignRight, firstLine, lastLine)
+            call s:CommentLines(forceNested, "none", firstLine, lastLine)
+        endif
+
+    elseif a:type == 'alignLeft' || a:type == 'alignBoth'
+        let align = "none"
+        if a:type == "alignLeft"
+            let align = "left"
+        elseif a:type == "alignBoth"
+            let align = "both"
+        endif
+        call s:CommentLines(forceNested, align, firstLine, lastLine)
 
     elseif a:type == 'invert'
         call s:InvertComment(firstLine, lastLine)
@@ -1545,7 +1582,7 @@
         try
             call s:CommentLinesSexy(firstLine, lastLine)
         catch /NERDCommenter.Delimiters/
-            call s:CommentLines(forceNested, 0, 0, firstLine, lastLine)
+            call s:CommentLines(forceNested, "none", firstLine, lastLine)
         catch /NERDCommenter.Nesting/
             call s:NerdEcho("Sexy comment aborted. Nested sexy cannot be nested", 0)
         endtry
@@ -1573,9 +1610,6 @@
         call s:CommentBlock(firstLine, firstLine, col("."), col("$")-1, 1)
         call s:RestoreScreenState()
 
-    elseif a:type == 'prepend'
-        call s:PrependCommentToLine()
-
     elseif a:type == 'append'
         call s:AppendCommentToLine()
 
@@ -1587,11 +1621,11 @@
 
     elseif a:type == 'yank'
         if a:isVisual
-            normal gvy
+            normal! gvy
         elseif countWasGiven
             execute firstLine .','. lastLine .'yank'
         else
-            normal Y
+            normal! yy
         endif
         execute firstLine .','. lastLine .'call NERDComment('. a:isVisual .', "norm")'
     endif
@@ -1628,19 +1662,19 @@
     " place the delimiters down. We do it differently depending on whether
     " there is a left AND right delimiter
     if lenRight > 0
-        execute ":normal " . insOrApp . left . right
-        execute ":normal " . lenRight . "h"
+        execute ":normal! " . insOrApp . left . right
+        execute ":normal! " . lenRight . "h"
     else
-        execute ":normal " . insOrApp . left
+        execute ":normal! " . insOrApp . left
 
         " if we are tacking the delim on the EOL then we gotta add a space
         " after it cos when we go out of insert mode the cursor will move back
         " one and the user wont be in position to type the comment.
         if isDelimOnEOL
-            execute 'normal a '
-        endif
-    endif
-    normal l
+            execute 'normal! a '
+        endif
+    endif
+    normal! l
 
     "if needed convert spaces back to tabs and adjust the cursors col
     "accordingly
@@ -1653,46 +1687,6 @@
     startinsert
 endfunction
 
-" Function: s:PrependCommentToLine(){{{2
-" This function prepends comment delimiters to the start of line and places
-" the cursor in position to start typing the comment
-function s:PrependCommentToLine()
-    " get the left and right delimiters without any escape chars in them
-    let left = s:GetLeft(0, 1, 0)
-    let right = s:GetRight(0, 1, 0)
-
-    " get the len of the right delim
-    let lenRight = strlen(right)
-
-
-    "if the line is empty then we need to know about this later on
-    let isLineEmpty = strlen(getline(".")) == 0
-
-    "stick the delimiters down at the start of the line. We have to format the
-    "comment with spaces as appropriate
-    if lenRight > 0
-        execute ":normal I" . left . right
-    else
-        execute ":normal I" . left
-    endif
-
-    " if there is a right delimiter then we gotta move the cursor left
-    " by the len of the right delimiter so we insert between the delimiters
-    if lenRight > 0
-        let leftMoveAmount = lenRight
-        execute ":normal " . leftMoveAmount . "h"
-    endif
-    normal l
-
-    "if the line was empty then we gotta add an extra space on the end because
-    "the cursor will move back one more at the end of the last "execute"
-    "command
-    if isLineEmpty && lenRight == 0
-        execute ":normal a "
-    endif
-
-    startinsert
-endfunction
 " Function: s:RemoveDelimiters(left, right, line) {{{2
 " this function is called to remove the first left comment delimiter and the
 " last right delimiter of the given line.
@@ -1849,7 +1843,7 @@
     " if the first line contains only the left delim then just delete it
     if theLine =~ '^[ \t]*' . left . '[ \t]*$' && !g:NERDCompactSexyComs
         call cursor(a:topline, 1)
-        normal dd
+        normal! dd
         let bottomline = bottomline - 1
 
     " topline contains more than just the left delim
@@ -1873,7 +1867,7 @@
     " if the bottomline contains only the right delim then just delete it
     if theLine =~ '^[ \t]*' . right . '[ \t]*$'
         call cursor(bottomline, 1)
-        normal dd
+        normal! dd
 
     " the last line contains more than the right delim
     else
@@ -3086,7 +3080,7 @@
     endif
 
     call cursor(t:NERDComOldTopLine, 0)
-    normal zt
+    normal! zt
     call setpos(".", t:NERDComOldPos)
 endfunction
 
@@ -3230,67 +3224,90 @@
 endfunction
 " Section: Comment mapping setup {{{1
 " ===========================================================================
-" This is where the mappings calls are made that set up the commenting key
-" mappings.
-
-" set up the mapping to switch to/from alternative delimiters
-execute 'nnoremap <silent>' . g:NERDAltComMap . ' :call <SID>SwitchToAlternativeDelimiters(1)<cr>'
-
-" set up the mappings to comment out lines
-execute 'nnoremap <silent>' . g:NERDComLineMap . ' :call NERDComment(0, "norm")<cr>'
-execute 'vnoremap <silent>' . g:NERDComLineMap . ' <ESC>:call NERDComment(1, "norm")<cr>'
-
-" set up the mappings to do toggle comments
-execute 'nnoremap <silent>' . g:NERDComLineToggleMap . ' :call NERDComment(0, "toggle")<cr>'
-execute 'vnoremap <silent>' . g:NERDComLineToggleMap . ' <ESC>:call NERDComment(1, "toggle")<cr>'
-
-" set up the mapp to do minimal comments
-execute 'nnoremap <silent>' . g:NERDComLineMinimalMap . ' :call NERDComment(0, "minimal")<cr>'
-execute 'vnoremap <silent>' . g:NERDComLineMinimalMap . ' <ESC>:call NERDComment(1, "minimal")<cr>'
-
-" set up the mappings to comment out lines sexily
-execute 'nnoremap <silent>' . g:NERDComLineSexyMap . ' :call NERDComment(0, "sexy")<CR>'
-execute 'vnoremap <silent>' . g:NERDComLineSexyMap . ' <ESC>:call NERDComment(1, "sexy")<CR>'
-
-" set up the mappings to do invert comments
-execute 'nnoremap <silent>' . g:NERDComLineInvertMap . ' :call NERDComment(0, "invert")<CR>'
-execute 'vnoremap <silent>' . g:NERDComLineInvertMap . ' <ESC>:call NERDComment(1, "invert")<CR>'
-
-" set up the mappings to yank then comment out lines
-execute 'nmap <silent>' . g:NERDComLineYankMap . ' :call NERDComment(0, "yank")<CR>'
-execute 'vmap <silent>' . g:NERDComLineYankMap . ' <ESC>:call NERDComment(1, "yank")<CR>'
-
-" set up the mappings for left aligned comments
-execute 'nnoremap <silent>' . g:NERDComAlignLeftMap . ' :call NERDComment(0, "alignLeft")<cr>'
-execute 'vnoremap <silent>' . g:NERDComAlignLeftMap . ' <ESC>:call NERDComment(1, "alignLeft")<cr>'
-
-" set up the mappings for right aligned comments
-execute 'nnoremap <silent>' . g:NERDComAlignRightMap . ' :call NERDComment(0, "alignRight")<cr>'
-execute 'vnoremap <silent>' . g:NERDComAlignRightMap . ' <ESC>:call NERDComment(1, "alignRight")<cr>'
-
-" set up the mappings for left and right aligned comments
-execute 'nnoremap <silent>' . g:NERDComAlignBothMap . ' :call NERDComment(0, "alignBoth")<cr>'
-execute 'vnoremap <silent>' . g:NERDComAlignBothMap . ' <ESC>:call NERDComment(1, "alignBoth")<cr>'
-
-" set up the mappings to do nested comments
-execute 'nnoremap <silent>' . g:NERDComLineNestMap . ' :call NERDComment(0, "nested")<cr>'
-execute 'vnoremap <silent>' . g:NERDComLineNestMap . ' <ESC>:call NERDComment(1, "nested")<cr>'
-
-" set up the mapping to uncomment a line
-execute 'nnoremap <silent>' . g:NERDUncomLineMap . ' :call NERDComment(0, "uncomment")<cr>'
-execute 'vnoremap <silent>' . g:NERDUncomLineMap . ' :call NERDComment(1, "uncomment")<cr>'
-
-" set up the mapping to comment out to the end of the line
-execute 'nnoremap <silent>' . g:NERDComToEOLMap . ' :call NERDComment(0, "toEOL")<cr>'
-
-" set up the mappings to append comments to the line
-execute 'nmap <silent>' . g:NERDAppendComMap . ' :call NERDComment(0, "append")<cr>'
-
-" set up the mappings to append comments to the line
-execute 'nmap <silent>' . g:NERDPrependComMap . ' :call NERDComment(0, "prepend")<cr>'
-
-" set up the mapping to insert comment delims at the cursor position in insert mode
-execute 'inoremap <silent>' . g:NERDComInInsertMap . ' ' . '<SPACE><BS><ESC>:call NERDComment(0, "insert")<CR>'
+
+" switch to/from alternative delimiters
+nnoremap <plug>NERDCommenterAltDelims :call <SID>SwitchToAlternativeDelimiters(1)<cr>
+
+" comment out lines
+nnoremap <silent> <plug>NERDCommenterComment :call NERDComment(0, "norm")<cr>
+vnoremap <silent> <plug>NERDCommenterComment <ESC>:call NERDComment(1, "norm")<cr>
+
+" toggle comments
+nnoremap <silent> <plug>NERDCommenterToggle :call NERDComment(0, "toggle")<cr>
+vnoremap <silent> <plug>NERDCommenterToggle <ESC>:call NERDComment(1, "toggle")<cr>
+
+" minimal comments
+nnoremap <silent> <plug>NERDCommenterMinimal :call NERDComment(0, "minimal")<cr>
+vnoremap <silent> <plug>NERDCommenterMinimal <ESC>:call NERDComment(1, "minimal")<cr>
+
+" sexy comments
+nnoremap <silent> <plug>NERDCommenterSexy :call NERDComment(0, "sexy")<CR>
+vnoremap <silent> <plug>NERDCommenterSexy <ESC>:call NERDComment(1, "sexy")<CR>
+
+" invert comments
+nnoremap <silent> <plug>NERDCommenterInvert :call NERDComment(0, "invert")<CR>
+vnoremap <silent> <plug>NERDCommenterInvert <ESC>:call NERDComment(1, "invert")<CR>
+
+" yank then comment
+nmap <silent> <plug>NERDCommenterYank :call NERDComment(0, "yank")<CR>
+vmap <silent> <plug>NERDCommenterYank <ESC>:call NERDComment(1, "yank")<CR>
+
+" left aligned comments
+nnoremap <silent> <plug>NERDCommenterAlignLeft :call NERDComment(0, "alignLeft")<cr>
+vnoremap <silent> <plug>NERDCommenterAlignLeft <ESC>:call NERDComment(1, "alignLeft")<cr>
+
+" left and right aligned comments
+nnoremap <silent> <plug>NERDCommenterAlignBoth :call NERDComment(0, "alignBoth")<cr>
+vnoremap <silent> <plug>NERDCommenterAlignBoth <ESC>:call NERDComment(1, "alignBoth")<cr>
+
+" nested comments
+nnoremap <silent> <plug>NERDCommenterNest :call NERDComment(0, "nested")<cr>
+vnoremap <silent> <plug>NERDCommenterNest <ESC>:call NERDComment(1, "nested")<cr>
+
+" uncomment
+nnoremap <silent> <plug>NERDCommenterUncomment :call NERDComment(0, "uncomment")<cr>
+vnoremap <silent> <plug>NERDCommenterUncomment :call NERDComment(1, "uncomment")<cr>
+
+" comment till the end of the line
+nnoremap <silent> <plug>NERDCommenterToEOL :call NERDComment(0, "toEOL")<cr>
+
+" append comments
+nmap <silent> <plug>NERDCommenterAppend :call NERDComment(0, "append")<cr>
+
+" insert comments
+inoremap <silent> <plug>NERDCommenterInInsert <SPACE><BS><ESC>:call NERDComment(0, "insert")<CR>
+
+
+function! s:CreateMaps(target, combo)
+    if !hasmapto(a:target, 'n')
+        exec 'nmap ' . a:combo . ' ' . a:target
+    endif
+
+    if !hasmapto(a:target, 'v')
+        exec 'vmap ' . a:combo . ' ' . a:target
+    endif
+endfunction
+
+if g:NERDCreateDefaultMappings
+    call s:CreateMaps('<plug>NERDCommenterComment',    ',cc')
+    call s:CreateMaps('<plug>NERDCommenterToggle',     ',c<space>')
+    call s:CreateMaps('<plug>NERDCommenterMinimal',    ',cm')
+    call s:CreateMaps('<plug>NERDCommenterSexy',       ',cs')
+    call s:CreateMaps('<plug>NERDCommenterInvert',     ',ci')
+    call s:CreateMaps('<plug>NERDCommenterYank',       ',cy')
+    call s:CreateMaps('<plug>NERDCommenterAlignLeft',  ',cl')
+    call s:CreateMaps('<plug>NERDCommenterAlignBoth',  ',cb')
+    call s:CreateMaps('<plug>NERDCommenterNest',       ',cn')
+    call s:CreateMaps('<plug>NERDCommenterUncomment',  ',cu')
+    call s:CreateMaps('<plug>NERDCommenterToEOL',      ',c$')
+    call s:CreateMaps('<plug>NERDCommenterAppend',     ',cA')
+
+    if !hasmapto('<plug>NERDCommenterAltDelims', 'n')
+        nmap ,ca <plug>NERDCommenterAltDelims
+    endif
+endif
+
+
 
 " Section: Menu item setup {{{1
 " ===========================================================================
@@ -3306,57 +3323,27 @@
         let menuRoot = '&Plugin.&comment'
     endif
 
-    execute 'nmenu <silent> '. menuRoot .'.Comment<TAB>' . escape(g:NERDComLineMap, '\') . ' :call NERDComment(0, "norm")<CR>'
-    execute 'vmenu <silent> '. menuRoot .'.Comment<TAB>' . escape(g:NERDComLineMap, '\') . ' <ESC>:call NERDComment(1, "norm")<CR>'
-
-    execute 'nmenu <silent> '. menuRoot .'.Comment\ Toggle<TAB>' . escape(g:NERDComLineToggleMap, '\') . ' :call NERDComment(0, "toggle")<CR>'
-    execute 'vmenu <silent> '. menuRoot .'.Comment\ Toggle<TAB>' . escape(g:NERDComLineToggleMap, '\') . ' <ESC>:call NERDComment(1, "toggle")<CR>'
-
-    execute 'nmenu <silent> '. menuRoot .'.Comment\ Minimal<TAB>' . escape(g:NERDComLineMinimalMap, '\') . ' :call NERDComment(0, "minimal")<CR>'
-    execute 'vmenu <silent> '. menuRoot .'.Comment\ Minimal<TAB>' . escape(g:NERDComLineMinimalMap, '\') . ' <ESC>:call NERDComment(1, "minimal")<CR>'
-
-    execute 'nmenu <silent> '. menuRoot .'.Comment\ Nested<TAB>' . escape(g:NERDComLineNestMap, '\') . ' :call NERDComment(0, "nested")<CR>'
-    execute 'vmenu <silent> '. menuRoot .'.Comment\ Nested<TAB>' . escape(g:NERDComLineNestMap, '\') . ' <ESC>:call NERDComment(1, "nested")<CR>'
-
-    execute 'nmenu <silent> '. menuRoot .'.Comment\ To\ EOL<TAB>' . escape(g:NERDComToEOLMap, '\') . ' :call NERDComment(0, "toEOL")<cr>'
-
-    execute 'nmenu <silent> '. menuRoot .'.Comment\ Invert<TAB>' . escape(g:NERDComLineInvertMap, '\') . ' :call NERDComment(0,"invert")<CR>'
-    execute 'vmenu <silent> '. menuRoot .'.Comment\ Invert<TAB>' . escape(g:NERDComLineInvertMap, '\') . ' <ESC>:call NERDComment(1,"invert")<CR>'
-
-    execute 'nmenu <silent> '. menuRoot .'.Comment\ Sexily<TAB>' . escape(g:NERDComLineSexyMap, '\') . ' :call NERDComment(0,"sexy")<CR>'
-    execute 'vmenu <silent> '. menuRoot .'.Comment\ Sexily<TAB>' . escape(g:NERDComLineSexyMap, '\') . ' <ESC>:call NERDComment(1,"sexy")<CR>'
-
-    execute 'nmenu <silent> '. menuRoot .'.Yank\ line(s)\ then\ comment<TAB>' . escape(g:NERDComLineYankMap, '\') . ' "0Y' . g:NERDComLineMap
-    execute 'vmenu <silent> '. menuRoot .'.Yank\ line(s)\ then\ comment<TAB>' . escape(g:NERDComLineYankMap, '\') . ' "0ygv' . g:NERDComLineMap
-
-    execute 'nmenu <silent> '. menuRoot .'.Append\ Comment\ to\ Line<TAB>' . escape(g:NERDAppendComMap, '\') . ' :call NERDComment(0, "append")<cr>'
-    execute 'nmenu <silent> '. menuRoot .'.Prepend\ Comment\ to\ Line<TAB>' . escape(g:NERDPrependComMap, '\') . ' :call NERDComment(0, "prepend")<cr>'
-
-    execute 'menu <silent> '. menuRoot .'.-Sep-    :'
-
-    execute 'nmenu <silent> '. menuRoot .'.Comment\ Align\ Left\ (nested)<TAB>' . escape(g:NERDComAlignLeftMap, '\') . ' :call NERDComment(0, "alignLeft")<CR>'
-    execute 'vmenu <silent> '. menuRoot .'.Comment\ Align\ Left\ (nested)<TAB>' . escape(g:NERDComAlignLeftMap, '\') . ' <ESC>:call NERDComment(1, "alignLeft")<CR>'
-
-    execute 'nmenu <silent> '. menuRoot .'.Comment\ Align\ Right\ (nested)<TAB>' . escape(g:NERDComAlignRightMap, '\') . ' :call NERDComment(0, "alignRight")<CR>'
-    execute 'vmenu <silent> '. menuRoot .'.Comment\ Align\ Right\ (nested)<TAB>' . escape(g:NERDComAlignRightMap, '\') . ' <ESC>:call NERDComment(1, "alignRight")<CR>'
-
-    execute 'nmenu <silent> '. menuRoot .'.Comment\ Align\ Both\ (nested)<TAB>' . escape(g:NERDComAlignBothMap, '\') . ' :call NERDComment(0, "alignBoth")<CR>'
-    execute 'vmenu <silent> '. menuRoot .'.Comment\ Align\ Both\ (nested)<TAB>' . escape(g:NERDComAlignBothMap, '\') . ' <ESC>:call NERDComment(1, "alignBoth")<CR>'
-
-    execute 'menu <silent> '. menuRoot .'.-Sep2-    :'
-
-    execute 'menu <silent> '. menuRoot .'.Uncomment<TAB>' . escape(g:NERDUncomLineMap, '\') . ' :call NERDComment(0, "uncomment")<cr>'
-    execute 'vmenu <silent>' . menuRoot.'.Uncomment<TAB>' . escape(g:NERDUncomLineMap, '\') . ' <esc>:call NERDComment(1, "uncomment")<cr>'
-
-    execute 'menu <silent> '. menuRoot .'.-Sep3-    :'
-
-    execute 'nmenu <silent> '. menuRoot .'.Use\ Alternative\ Delimiters<TAB>' . escape(g:NERDAltComMap, '\') . ' :call <SID>SwitchToAlternativeDelimiters(1)<CR>'
-
-
-    execute 'imenu <silent> '. menuRoot .'.Insert\ Delims<TAB>' . escape(g:NERDComInInsertMap, '\') . ' <SPACE><BS><ESC>:call NERDComment(0, "insert")<CR>'
-
-    execute 'menu '. menuRoot .'.-Sep4-    :'
-
-    execute 'menu <silent>'. menuRoot .'.Help<TAB>:help\ NERDCommenterContents :help NERDCommenterContents<CR>'
+    function! s:CreateMenuItems(target, desc, root)
+        exec 'nmenu <silent> ' . a:root . '.' . a:desc . ' ' . a:target
+        exec 'vmenu <silent> ' . a:root . '.' . a:desc . ' ' . a:target
+    endfunction
+    call s:CreateMenuItems("<plug>NERDCommenterComment",    'Comment', menuRoot)
+    call s:CreateMenuItems("<plug>NERDCommenterToggle",     'Toggle', menuRoot)
+    call s:CreateMenuItems('<plug>NERDCommenterMinimal',    'Minimal', menuRoot)
+    call s:CreateMenuItems('<plug>NERDCommenterNest',       'Nested', menuRoot)
+    exec 'nmenu <silent> '. menuRoot .'.To\ EOL <plug>NERDCommenterToEOL'
+    call s:CreateMenuItems('<plug>NERDCommenterInvert',     'Invert', menuRoot)
+    call s:CreateMenuItems('<plug>NERDCommenterSexy',       'Sexy', menuRoot)
+    call s:CreateMenuItems('<plug>NERDCommenterYank',       'Yank\ then\ comment', menuRoot)
+    exec 'nmenu <silent> '. menuRoot .'.Append <plug>NERDCommenterAppend'
+    exec 'menu <silent> '. menuRoot .'.-Sep-    :'
+    call s:CreateMenuItems('<plug>NERDCommenterAlignLeft',  'Left\ aligned', menuRoot)
+    call s:CreateMenuItems('<plug>NERDCommenterAlignBoth',  'Left\ and\ right\ aligned', menuRoot)
+    exec 'menu <silent> '. menuRoot .'.-Sep2-    :'
+    call s:CreateMenuItems('<plug>NERDCommenterUncomment',  'Uncomment', menuRoot)
+    exec 'nmenu <silent> '. menuRoot .'.Switch\ Delimiters <plug>NERDCommenterAltDelims'
+    exec 'imenu <silent> '. menuRoot .'.Insert\ Comment\ Here <plug>NERDCommenterInInsert'
+    exec 'menu <silent> '. menuRoot .'.-Sep3-    :'
+    exec 'menu <silent>'. menuRoot .'.Help :help NERDCommenterContents<CR>'
 endif
 " vim: set foldmethod=marker :




More information about the pkg-vim-maintainers mailing list