我需要在加载名为[utl.vim][1]
的插件后获取一些配置行。
documentation说,我需要将这些配置放入after-directory
:
[23] NOte that you cannot include this line in your .vimrc because it is
:source'd before utl_rc.vim (which defines g:utl_cfg_hdl_mt_generic).
So either include/change it at <url:config:#r=utl_cfg_hdl_mt_text_directory>
or include it in the after-directory, see <url:vimhelp:after-directory#5.>
我在utl.vim
目录中创建了一个名为~/.vim/after/
的文件。
但是这个文件不是来源的。我使用:scriptnames
验证了这一点。
如何确保Vim在加载utl.vim
插件后获取此文件?
答案 0 :(得分:2)
Vim加载的文件/目录列表在:help startup
中描述。尽管它列出了plugin
目录,但它没有提到after
目录,所以你看到的是预期的行为。
after
目录通常是文件类型插件的来源,如Vim FAQ 26.3 - "How do I extend an existing filetype plugin?"中所述。该插件可能会运行类似:runtime! after/**/*.vim
的内容,但如果文档不清楚则应该向插件作者询问,因为允许用户设置此变量可能更容易,并且插件也是如此可以附加/前置默认值