如何在Vim中列出加载的插件?
有没有人知道在Vim中列出“加载插件”的方法? 我知道我应该自己跟踪这种东西,但总是能够检查当前的状态。
不是VIM用户本人,所以请原谅我,如果这是完全offbase。 但根据我从以下VIM Tips网站收集的内容:
" where was an option set :scriptnames : list all plugins, _vimrcs loaded (super) :verbose set history? : reveals value of history and where set :function : list functions :func SearchCompl : List particular function
问题在于:scriptnames
, :commands
, :functions
和类似的Vim命令,是它们在一大块文本中显示信息,这很难在视觉上parsing。
为了解决这个问题,我写了Headlights ,一个向Vim添加菜单的插件,显示所有已加载的插件,TextMate样式。 额外的好处是它显示插件命令,映射,文件和其他零碎。
如果您使用Vundle ,则:PluginList
。
:set runtimepath?
这列出了用Vim打开文件时加载的所有插件的path。