现在我正在清理我的.vimrc文件,以确保它在大多数系统上是兼容的.
在我的状态栏中,我使用另一个插件设置的功能,即this plugin引入的GitBranchInfoString()函数.
我想做的是检查此功能是否设置,然后才将其添加到状态行.这将是在自己的线,所以我只需要检查它.
什么是最简单的方式来完成这个?
感谢你的帮助!
编辑:
我有以下几点:
if exists('*GitBranchInfoString') let &stl.='%{GitBranchInfoString()}' endif
使用
if exists("*GitBranchInfoString") " do stuff here endif