我目前正在尝试编写一个允许调用 Vim 命令的脚本,该命令又调用外部命令。我想在具有特定扩展名的文件列表中启用自动完成结果(请参见下面的代码)。
完成实际上是在具有给定扩展名的文件列表中循环,但是当我开始输入内容并按 Tab 时,无论输入什么内容,都会从列表的开头重复完成循环(而不是实际完成其余的输入中给出的文件名)。代码如下:
call CreateEditCommand('EComponent', 'ComponentFiles')
function! CreateEditCommand(command, listFunction)
silent execute 'command! -nargs=1 -complete=customlist,'. a:listFunction . ' ' . a:command . ' call EditFile(<f-args>)'
endfunction
function! ComponentFiles(A,L,P)
return Files('component.ts')
endfunction
function! Files(extension)
let paths = split(globpath('.', '**/*.' . a:extension), "\n")
let idx = range(0, len(paths)-1)
let g:global_paths = {}
for i in idx
let g:global_paths[fnamemodify(paths[i], ':t:r')] = paths[i]
endfor
call map(paths, 'fnamemodify(v:val, ":t:r")')
return paths
endfunction
function! EditFile(file)
execute 'edit' g:global_paths[a:file]
endfunction
例如,如果我有:app.component.ts 和 test.component.ts,然后我输入
:EComponent test
然后按tab,完成的命令如下
:EComponent app.component.ts
代替:
:EComponent test.component.ts
提前感谢您对此的帮助。