From 760df352734666753ceb66a0886e0f0a844c3a48 Mon Sep 17 00:00:00 2001 From: Anurag Priyam Date: Thu, 11 Nov 2010 16:48:55 +0800 Subject: [PATCH] corrected comment delimiter for liquid filetype --- plugin/NERD_commenter.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/NERD_commenter.vim b/plugin/NERD_commenter.vim index ef88dd4..bbfeb63 100644 --- a/plugin/NERD_commenter.vim +++ b/plugin/NERD_commenter.vim @@ -208,7 +208,7 @@ let s:delimiterMap = { \ 'ldif': { 'left': '#' }, \ 'lilo': { 'left': '#' }, \ 'lilypond': { 'left': '%' }, - \ 'liquid': { 'left': '{%', 'right': '%}' }, + \ 'liquid': { 'left': '{% comment %}', 'right': '{% endcomment %}' }, \ 'lisp': { 'left': ';', 'leftAlt': '#|', 'rightAlt': '|#' }, \ 'llvm': { 'left': ';' }, \ 'lotos': { 'left': '(*', 'right': '*)' },