From 88ef57e0983d1959f479363ff07203a1eaef13df Mon Sep 17 00:00:00 2001 From: Ashley Blackmore Date: Wed, 30 Apr 2014 12:30:58 +1000 Subject: [PATCH] add commenting for jinja templates Closes #149 --- plugin/NERD_commenter.vim | 1 + 1 file changed, 1 insertion(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index 6fcd71b..493c838 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -217,6 +217,7 @@ let s:delimiterMap = { \ 'javascript.jquery': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'jess': { 'left': ';' }, \ 'jgraph': { 'left': '(*', 'right': '*)' }, + \ 'jinja': { 'left': '', 'leftAlt': '{#', 'rightAlt': '#}' }, \ 'jproperties': { 'left': '#' }, \ 'jsp': { 'left': '<%--', 'right': '--%>' }, \ 'julia': { 'left': '#' },