From 00e9729661283647511dca15147c91cdc9e29a0b Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Tue, 24 May 2016 17:36:01 +0300 Subject: [PATCH] Add multiline delimiter support to ASY file type --- 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 4b2f4d6..72fb564 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -89,7 +89,7 @@ let s:delimiterMap = { \ 'asn': { 'left': '--' }, \ 'aspvbs': { 'left': '''', 'leftAlt': '' }, \ 'asterisk': { 'left': ';' }, - \ 'asy': { 'left': '//' }, + \ 'asy': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'atlas': { 'left': 'C', 'right': '$' }, \ 'autohotkey': { 'left': ';' }, \ 'autoit': { 'left': ';' },