0

我目前正在尝试编写一个允许调用 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

提前感谢您对此的帮助。

4

1 回答 1

1

ComponentFiles()应该根据光标 ( ) 之前的字符过滤ArgLead文件列表,但您总是返回相同的列表,因此该函数没有任何用处。

下面的自定义完成函数仅返回ls与光标前字符匹配的项目:

function! MyComp(ArgLead, CmdLine, CursorPos)
    return filter(systemlist("ls"), 'v:val =~ a:ArgLead')
endfunction

function! MyFunc(arg)
    execute "edit " . a:arg
endfunction

command! -nargs=1 -complete=customlist,MyComp MyEdit call MyFunc(<f-args>)

:help :command-completion-customlist

于 2016-08-05T19:12:18.757 回答