improved MyFoldText()

This commit is contained in:
ManjaroOne666 2018-05-08 22:23:27 +01:00
parent c70e6ba69d
commit fe2b02ea89
1 changed files with 1 additions and 0 deletions

View File

@ -98,6 +98,7 @@ function! MyFoldText()
let l:subexp = '^ \{,' . len(l:prefix) . '}'
let l:foldtext = substitute(l:line, l:subexp, l:prefix, '')
let l:foldtext = substitute(l:foldtext, '"{{{', '', '')
return l:foldtext
endfunction