有人知道在Vim中列出“已加载插件”的方法吗? 我知道我应该自己记录这些事情,但是 能够检查当前状态总是很好的。
当前回答
我自己不是VIM用户,所以如果这是完全错误的,请原谅我。但根据我从以下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
其他回答
如果你使用vim-plug(插头),” 一个极简的Vim插件管理器。”:
:PlugStatus
这不仅会列出你的插件,还会检查它们的状态。
如果你使用Vundle,:PluginList。
:帮助附加
列出已添加的本地插件。
:set runtimepath?
这列出了当一个文件被Vim打开时加载的所有插件的路径。
我自己不是VIM用户,所以如果这是完全错误的,请原谅我。但根据我从以下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