From 1671f8aa717be9fc20016b414bb21df4a24ab950 Mon Sep 17 00:00:00 2001 From: Justin Donaldson Date: Sun, 3 Jun 2012 20:00:13 -0700 Subject: [PATCH] adding hx/hxml support --- plugin/NERD_commenter.vim | 2 ++ 1 file changed, 2 insertions(+) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index b47f7ef..44df0dc 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -182,12 +182,14 @@ let s:delimiterMap = { \ 'hb': { 'left': '#' }, \ 'h': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'haml': { 'left': '-#', 'leftAlt': '/' }, + \ 'haxe': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'hercules': { 'left': '//', 'leftAlt': '/*', 'rightAlt': '*/' }, \ 'hog': { 'left': '#' }, \ 'hostsaccess': { 'left': '#' }, \ 'htmlcheetah': { 'left': '##' }, \ 'htmldjango': { 'left': '', 'leftAlt': '{#', 'rightAlt': '#}' }, \ 'htmlos': { 'left': '#', 'right': '/#' }, + \ 'hxml': { 'left': '#' }, \ 'ia64': { 'left': '#' }, \ 'icon': { 'left': '#' }, \ 'idlang': { 'left': ';' },