From df647acefcccb65cba02d3f6ca19bdf3b126c51c Mon Sep 17 00:00:00 2001 From: Lucas Bourneuf Date: Thu, 26 May 2016 15:06:05 +0200 Subject: [PATCH] fix asp support (doublon) --- 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 b07130d..95d639d 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -75,7 +75,6 @@ let s:delimiterMap = { \ 'ada': { 'left': '--', 'leftAlt': '-- ' }, \ 'ahdl': { 'left': '--' }, \ 'ahk': { 'left': ';', 'leftAlt': '/*', 'rightAlt': '*/' }, - \ 'asp': { 'left': '%', 'leftAlt': '%*','rightAlt': '*%' }, \ 'amiga': { 'left': ';' }, \ 'aml': { 'left': '/*' }, \ 'ampl': { 'left': '#' }, @@ -87,6 +86,7 @@ let s:delimiterMap = { \ 'asm68k': { 'left': ';' }, \ 'asm': { 'left': ';', 'leftAlt': '#' }, \ 'asn': { 'left': '--' }, + \ 'asp': { 'left': '%', 'leftAlt': '%*','rightAlt': '*%' }, \ 'aspvbs': { 'left': '''', 'leftAlt': '' }, \ 'asterisk': { 'left': ';' }, \ 'asy': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' },