aboutsummaryrefslogtreecommitdiff
path: root/vim/ftplugin/markdown/autoformat.vim
diff options
context:
space:
mode:
Diffstat (limited to 'vim/ftplugin/markdown/autoformat.vim')
-rw-r--r--vim/ftplugin/markdown/autoformat.vim2
1 files changed, 1 insertions, 1 deletions
diff --git a/vim/ftplugin/markdown/autoformat.vim b/vim/ftplugin/markdown/autoformat.vim
index a76735d9..f714dad4 100644
--- a/vim/ftplugin/markdown/autoformat.vim
+++ b/vim/ftplugin/markdown/autoformat.vim
@@ -28,7 +28,7 @@ if !exists('*s:Load')
if strlen(l:line) > l:width
\ && stridx(l:line, ' ') > -1
\ && l:line !~# '\m^ '
- let l:count = l:count + 1
+ let l:count += 1
endif
endfor
if l:count * 100 / l:total < 5