如果我输入ls
我的目录,我会得到:
README.md lib sdf.t t.t t1.t t2.t tt.t
我在 vim 中,如果我输入::find *.t
,我会得到:too many file names
这是怎么回事?
如果我打印我的 vim 路径变量,我会得到:
.,/usr/include,,,**
答案1
的参数:find
应该是一个单一的、精确的文件名。*.t
被展开,所以命令是:find sdf.t t.t t1.t t2.t tt.t
,事实上,它有太多的文件名。
:fin :find
:fin[d][!] [++opt] [+cmd] {file}
Find {file} in 'path' and then :edit it.
{not available when the +file_in_path feature was disabled at compile time}