From 247421c0bac49600f40f3da4fa553fc060eb7a5e Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Tue, 24 May 2016 08:16:57 +0300 Subject: [PATCH] Add alternate block-wise comment syntax Per @gf3's comment on issue #40, this seems to be more complete support over the bare PR I merged from #100. --- plugin/NERD_commenter.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index 178dcdb..72a62a5 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -324,7 +324,7 @@ let s:delimiterMap = { \ 'ptcap': { 'left': '#' }, \ 'puppet': { 'left': '#' }, \ 'python': { 'left': '#' }, - \ 'racket': { 'left': ';' }, + \ 'racket': { 'left': ';', 'leftAlt': '#|', 'rightAlt': '|#' }, \ 'radiance': { 'left': '#' }, \ 'ratpoison': { 'left': '#' }, \ 'r': { 'left': '#' },