From d4a5479c2c8e1f129a5e39239208a4c1608e78bd Mon Sep 17 00:00:00 2001 From: Gonzalo Serrano Date: Sun, 11 Dec 2011 11:03:59 +0100 Subject: [PATCH] Twig templates support added. --- plugin/NERD_commenter.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index 6cb7dbe..086b8d5 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -363,6 +363,7 @@ let s:delimiterMap = { \ 'tsscl': { 'left': '#' }, \ 'tssgm': { 'left': "comment = '", 'right': "'" }, \ 'txt2tags': { 'left': '%' }, + \ 'twig': { 'left': '{#', 'right': '#}' }, \ 'uc': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'uil': { 'left': '!' }, \ 'vb': { 'left': "'" },