This commit is contained in:
ManjaroOne666 2018-11-17 16:44:28 +00:00
commit a064515380
2 changed files with 43 additions and 16 deletions

5
vimrc
View file

@ -580,11 +580,12 @@ 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')
" let l:postfix = l:linecount . ' ' . substitute(v:folddashes, '-', '•', 'g')
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:postfix = ' ↓ ' . l:postfix
let l:len_line = len(l:line)
let l:len_postfix = strchars(l:postfix)