From eb5720c3659bf594d699f66a74713a71fb2c495f Mon Sep 17 00:00:00 2001 From: John Tyree Date: Thu, 3 Jan 2013 12:10:29 +0100 Subject: [PATCH] Remove extra space from Haskell alt. --- 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 2f592ba..71aaaff 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -180,7 +180,7 @@ let s:delimiterMap = { \ 'groovy': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'gsp': { 'left': '<%--', 'right': '--%>', 'leftAlt': ''}, \ 'gtkrc': { 'left': '#' }, - \ 'haskell': { 'left': '{-','right': '-}', 'leftAlt': '-- ' }, + \ 'haskell': { 'left': '{-','right': '-}', 'leftAlt': '--' }, \ 'hb': { 'left': '#' }, \ 'h': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'haml': { 'left': '-#', 'leftAlt': '/' },