Você pode usar :exe
, mas isso é extremamente complicado de usar e você precisará escapar de algumas coisas.
Eu costumava usar minha própria função de correção de caminho. Parecia com:
exe 'set rtp+='.lh#path#fix(somevariable)
" with standard tools, may be it'd be (untested)
exe 'set rtp+='.escape(somevariable, ' \|,')
let &rtp = expression
é realmente nosso amigo.
Mas, de fato, não funciona bem +=
. É por isso que eu inventei lh#path#munge()
que depende de outra função lh#list#add_if_new()
. Estritamente falando, set +=
é imitado por lh#list#add_if_new()
. munge()
mantém nomes de caminho que existem, ou na verdade padrões que combinam com as coisas.
" Function: lh#path#munge(pathlist, path) {{{3
function! lh#path#munge(pathlist, path) abort
if type(a:pathlist) == type('str')
let pathlist = split(a:pathlist, ',')
return join(lh#path#munge(pathlist, a:path), ',')
else
" if filereadable(a:path) || isdirectory(a:path)
if ! empty(glob(a:path)) " support '/**' for &tags
call lh#list#push_if_new(a:pathlist, a:path)
endif
return a:pathlist
endif
endfunction
" Function: lh#list#push_if_new(list, value) {{{3
function! lh#list#push_if_new(list, value) abort
if index(a:list, a:value) < 0
call add (a:list, a:value)
endif
return a:list
endfunction
Eles são definidos e mantidos em lh-vim-lib .