From 4b0e807db4de5ed282239884cf3896b12535f370 Mon Sep 17 00:00:00 2001 From: leafOfTree Date: Wed, 25 Sep 2019 14:24:27 +0800 Subject: [PATCH] Fix typo --- ftplugin/vue/fold.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ftplugin/vue/fold.vim b/ftplugin/vue/fold.vim index 1398c37..387a27c 100644 --- a/ftplugin/vue/fold.vim +++ b/ftplugin/vue/fold.vim @@ -90,7 +90,7 @@ function! GetVueFold(lnum) endfunction function! s:IndentLevel(lnum) - " Add 1 to indentLevel, so start/end tags' can fold properly + " Add 1 to indentLevel, so start/end tags can fold properly return indent(a:lnum) / &shiftwidth + 1 endfunction