我正在寻找如何在 vim 状态行中显示分支名称(对于 git 和 mercurial)。有插件吗?
我试图使用vcprompt
function! GetVcpromptBranch()
let result = system('vcprompt')
return result
endfunction
并在 .vimrc
set statusline= .... Branch\ %{GetVcpromptBranch()}
但是这个函数经常被调用,所以一切都变慢了。有一些替代方案吗?