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': '*/' },