From 1d07874610ca37e27fbd20f9ec44640064b49845 Mon Sep 17 00:00:00 2001 From: Caleb Maclennan Date: Tue, 24 May 2016 17:35:14 +0300 Subject: [PATCH] Add ASP filetype support --- plugin/NERD_commenter.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index d7f6e9c..4b2f4d6 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -75,6 +75,7 @@ let s:delimiterMap = { \ 'ada': { 'left': '--', 'leftAlt': '-- ' }, \ 'ahdl': { 'left': '--' }, \ 'ahk': { 'left': ';', 'leftAlt': '/*', 'rightAlt': '*/' }, + \ 'asp': { 'left': '%', 'leftAlt': '%*','rightAlt': '*%' }, \ 'amiga': { 'left': ';' }, \ 'aml': { 'left': '/*' }, \ 'ampl': { 'left': '#' },