From f5ba71c152a63f45e5e549b197f592192e7bec7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Karl=20Yngve=20Lerv=C3=A5g?= Date: Thu, 21 Jul 2016 22:01:17 +0200 Subject: [PATCH] Fix minor bug --- autoload/vimtex/format.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/autoload/vimtex/format.vim b/autoload/vimtex/format.vim index 74a223a..494a018 100644 --- a/autoload/vimtex/format.vim +++ b/autoload/vimtex/format.vim @@ -49,7 +49,7 @@ function! vimtex#format#formatexpr() " {{{1 normal! x endif - for l:current in range(l:bottom, l:top+1, -1) + for l:current in range(l:bottom, l:top, -1) let l:line = getline(l:current) if l:line =~# s:border_end