From 39a9986627263cba4fb0c661734bd3db77520184 Mon Sep 17 00:00:00 2001 From: mattn Date: Sat, 6 Apr 2013 22:16:23 +0900 Subject: [PATCH] Fix toggleComment --- autoload/zencoding/lang/html.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/zencoding/lang/html.vim b/autoload/zencoding/lang/html.vim index f7cd55f..c38c035 100644 --- a/autoload/zencoding/lang/html.vim +++ b/autoload/zencoding/lang/html.vim @@ -518,7 +518,7 @@ function! zencoding#lang#html#toggleComment() call setpos('.', [0, pos2[0], pos2[1], 0]) let pos2 = searchpairpos('<'. tag_name . '>', '', '', 'nW') call setpos('.', [0, pos2[0], pos2[1], 0]) - let pos2 = searchpos('>', 'cneW') + let pos2 = searchpos('>', 'neW') let block = [pos1, pos2] endif if !zencoding#util#regionIsValid(block)