Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如标题所述,如何检查插件是否已加载?
当我点击制表符(对于 SuperTab)时,我得到的只是插入文件中的普通字符“制表符”,当我点击ctrl-space时,我只是被抛出插入模式(与点击ESC的行为相同)
该:scriptnames命令列出了所有已获取的脚本;检查其输出中的插件名称。如果丢失,则可能是由于安装错误或'runtimepath'不正确。
:scriptnames
'runtimepath'
或者,如果您知道插件应该定义的映射
:verbose imap <Tab>
将显示映射以及设置的脚本。
以编程方式,最好检查规范的包含保护if exists('g:loaded_pluginname')或通过if exists(':PluginCommand').
if exists('g:loaded_pluginname')
if exists(':PluginCommand')