开发者

How do I source a list of files from vimrc?

I basically want to add something like

source ~/.vim/source.开发者_如何学Pythond/*.vim

to vimrc.

Is it possible to loop over a set of globbed files?


Why don't you put them into your ~/.vim/plugin/ directory? It will get the job done, and transparently furthermore.


Use the :runtime! command (including the !).

:runtime! source.d/*.vim

This is how the plugin folder is loaded.


Got the following answer on #vim:

exe join(map(split(glob("~/.vim/source.d/*.vim"), "\n"), '"source " . v:val'), "\n")
0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜