标签: vim autocomplete
在vim中,我想创建一个以文件名作为单个参数的新命令 有没有办法创建这样的命令,以便file-name-completion-magic(使用tab)可以工作?
答案 0 :(得分:9)
只需在命令参数中使用-complete=file。
-complete=file
:help :command-completion
例如:
:command -complete=file -nargs=1 OpenFile e <args>