summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--vimrc4
1 files changed, 2 insertions, 2 deletions
diff --git a/vimrc b/vimrc
index 22d65e5..34808d0 100644
--- a/vimrc
+++ b/vimrc
@@ -309,11 +309,11 @@ function Base_foldtext(...)
let line = substitute(line, '^\s*\(.\{-}\)\s*$', '\1', '')
" align everything, and pad the end of the display with -
- let line = printf('%-' . (63 - v:foldlevel) . 's', line)
+ let line = printf('%-' . (62 - v:foldlevel) . 's', line)
let line = substitute(line, '\%( \)\@<= \%( *$\)\@=', '-', 'g')
" format the line count
- let nlines = printf('%12s',
+ let nlines = printf('%13s',
\ '(' . (v:foldend - v:foldstart + 1) . ' lines) ')
return '+-' . v:folddashes . ' ' . line . nlines