vim lista personalizada completa automática

4

Eu tenho essas duas perguntas sobre essa função

" how do I load a file into a list here?
" set some variable  

func! CustomComplete() 


" and then read the variable here so that b:list = a \n split file ?
let b:list = ["spoogle","spangle","frizzle"]
let b:matches = []

A intenção é que eu possa apenas apertar uma tecla de atalho e preencher automaticamente uma lista do sistema de arquivos.


inoremap <F5> <C-R>=CustomComplete()<CR>

" how do I load a file into a list?
func! CustomComplete()

echom 'select word under cursor'
let b:word = expand('<cword>')
echom '->'.b:word.'<-'
echom 'save position'
let b:position = col('.')
echom '->'.b:position.'<-'
normal e
normal l
echom 'move to end of word'

" and then read the list here?
let b:list = ["spoogle","spangle","frizzle"]
let b:matches = []


echom 'begin checking for completion'
for item in b:list
echom 'checking '
echom '->'.item.'<-'
  if(match(item,'^'.b:word)==0)
  echom 'adding to matches'
  echom '->'.item.'<-'
  call add(b:matches,item)
  endif
endfor
call complete(b:position, b:matches)
return ''
    endfunc
    
por Prospero 04.11.2012 / 18:01

1 resposta

0

Você pode recuperar os nomes dos arquivos por meio de glob() , como este, que oferece todos os arquivos de texto em seu diretório inicial para conclusão:

inoremap <F5> <C-R>=ListFiles()<CR>

func! ListFiles()
    let files = map(split(glob('~/*.txt'), "\n"), 'fnamemodify(v:val, ":t")')
    call complete(col('.'), files)
    return ''
endfunc

Para remover o caminho, usei fnamemodify() , que eu map() 'sobre a lista.

    
por 20.02.2013 / 14:19

Tags