我在 vim 中定义了一个函数来正确缩进折叠。也就是说,它们看起来像这样:
展开
this is text
also text
indented text
indented text
not indented text
使用默认功能折叠
this is text
also text
+-- 2 lines: indented text ----------------------------
not indented text
与我的新功能折叠
this is text
also text
++- 2 lines: indented text ----------------------------
not indented text
唯一的问题是突出显示仍然是这样的:
使用我的新功能进行折叠(用标签突出显示)
this is text
also text
<hi> ++- 2 lines: indented text ----------------------------</hi>
not indented text
我希望突出显示从 ++ 开始,而不是从行首开始。我查看了 vim 手册,但没有找到类似的东西。我发现的一个马马虎虎的解决方案是将背景设为黑色。
highlight Folded ctermbg=black ctermfg=white cterm=bold
但这会使褶皱不那么明显。
我尝试了几种不同的方法:
syn keyword Folded lines
syn region Folded ...
但我不认为这是选择折叠的方式。有人能提出建议吗?
顺便说一下,这是我的缩进折叠的功能:
set foldmethod=indent
function! MyFoldText()
let lines = 1 + v:foldend - v:foldstart
let ind = indent(v:foldstart)
let spaces = ''
let i = 0
while i < ind
let i = i+1
let spaces = spaces . ' '
endwhile
let linestxt = 'lines'
if lines == 1
linestxt = 'line'
endif
return spaces . '+' . v:folddashes . ' '. lines . ' ' . linestxt . ': ' . getline(v:foldstaendfunction
endfunction
au BufWinEnter,BufRead,BufNewFile * set foldtext=MyFoldText()
顺便感谢新泽西帮助我设置此功能。