我在系统上的/ etc /
vimrc
文件中看到这个命令:
runtime! vimrc_example.vim
从文档:
:ru[ntime][!] {file} ..
Read Ex commands from {file} in each directory
given
by ‘runtimepath’.
是否等同于:source {file}?
:source source指定给定路径的
文件(相对或绝对)
:运行时源源与& runtimepath中找到的与给定的部分路径匹配的第一个文件(除非有爆炸!).
BTW,使用的路径名:runtime可以包含wildchars(不知何故是glob模式).这与正则表达式无关.