From 05de4871ce19a0475cc2c2fe97ee73534a9aa5cd Mon Sep 17 00:00:00 2001 From: Sivakumar Kailasam Date: Mon, 10 Aug 2015 08:54:14 +0530 Subject: [PATCH] Adds support for handlebars file formats --- plugin/NERD_commenter.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index 816a4d2..2ae7209 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -187,6 +187,8 @@ let s:delimiterMap = { \ 'h': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'haml': { 'left': '-#', 'leftAlt': '/' }, \ 'haxe': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, + \ 'handlebars': { 'left': '{{!-- ', 'right': ' --}}' }, + \ 'hbs': { 'left': '{{!-- ', 'right': ' --}}' }, \ 'hercules': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'hog': { 'left': '#' }, \ 'hostsaccess': { 'left': '#' },