diff --git a/vimrc b/vimrc index 64b989b..5193e3b 100644 --- a/vimrc +++ b/vimrc @@ -559,10 +559,11 @@ function! MyFoldText() "{{{ " don't display vim comment quotation marks let l:line = substitute(l:line, "\^\"\\s\\?", '', '') - let l:postfix = ' ↓ ' . l:linecount . ' ' . substitute(v:folddashes, '-', '•', 'g') - while strchars(l:postfix) < 11 + let l:postfix = l:linecount . ' ' . substitute(v:folddashes, '-', '•', 'g') + while strchars(l:postfix) < 7 let l:postfix = ' ' . l:postfix endwhile + let l:postfix = '↓ ' . l:postfix let l:len_line = len(l:line) let l:len_postfix = strchars(l:postfix)