From 536779375d1b70656cb9385bc8c9305a8802f811 Mon Sep 17 00:00:00 2001 From: Jonatan Olofsson Date: Thu, 23 Oct 2014 15:24:12 +0200 Subject: [PATCH] Add support for tupfiles --- plugin/NERD_commenter.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index b7ba977..33be8ff 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -376,6 +376,7 @@ let s:delimiterMap = { \ 'tsalt': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'tsscl': { 'left': '#' }, \ 'tssgm': { 'left': "comment = '", 'right': "'" }, + \ 'tup': { 'left': '#' }, \ 'txt2tags': { 'left': '%' }, \ 'twig': { 'left': '{#', 'right': '#}' }, \ 'uc': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' },