I'm trying to get a variable expanded in a command call. Here's what I have in my .vimrc:

command! -nargs=1 -complete=dir TlAddPm call s:TlAddPm(<f-args>)
function! s:TlAddPm(dir)
    let flist = system("find " . shellescape(a:dir) . " -type f -name '*.pm' | sort")
    TlistAddFiles `=flist`
endfun

At the : prompt, the `=flist` syntax seems to work (or, at least it did with a w: variable), but in the .vimrc file it doesn't — TlistAddFiles is just passed the string `=flist`.


Thanks to Andrew Barnett's and Mykola Golubyev's answers, I've now got this, which appears to work. Is there no better way?

command! -nargs=1 -complete=dir TlAddPm call s:TlAddPm(<f-args>)
function! s:TlAddPm(dir)
    let findres = system("find " . shellescape(a:dir) . " -type f -name '*.pm' | sort")
    let flist = []
    for w in split(findres, '\n')
        let flist += [ fnameescape(w) ]
    endfor
    exe "TlistAddFiles " . join(flist)
endfun
link|improve this question

what is the definition of TlistAddFiles? – Mykola Golubyev Mar 20 '09 at 16:07
It's from the taglist plugin vim-taglist.sourceforge.net – derobert Mar 20 '09 at 16:17
do you call s:TlAddPm(dir) from the .vimrc? – Mykola Golubyev Mar 20 '09 at 16:25
yes, I call it from .vimrc ... see the command! line (the first line in the code example) – derobert Mar 20 '09 at 16:35
Check out your code refactoring. – Mykola Golubyev Mar 20 '09 at 17:47
feedback

2 Answers

up vote 5 down vote accepted

Try just

let joined = join(split(flist))
exec 'TlistAddFiles '.joined

To your edit:

 let flist = split(findres, '\n')
 call map(flist, 'fnameescape(v:val)')
link|improve this answer
TlistAddFiles flist just passes the string flist. – derobert Mar 20 '09 at 16:12
TlistAddFiles string(joined) .... passes string(joined). And the join() line complains that a list is required. – derobert Mar 20 '09 at 16:22
Yeah, the exec seems required. – derobert Mar 20 '09 at 16:34
feedback

Something like

exe "TlistAddFiles `=".flist

might work.

link|improve this answer
Thats closer. Passes a string like View/JSON.pm^@View/TT.pm^@ ... just need to figure out how to split on null and also pass each to filenameescape. – derobert Mar 20 '09 at 16:16
FYI: I used exe "TlistAddFilesRecursive " . flist ... the `= stuff is weird syntax that makes the expansion work at the : prompt. – derobert Mar 20 '09 at 16:17
I think the null is coming from Vim trying to get rid of the newlines.... – derobert Mar 20 '09 at 16:24
In that case, how about an 'xargs' at the end of your system string? – Andrew Barnett Mar 20 '09 at 16:34
Well, that'd make problems for file names with spaces in them. But I've come up with something that (while ugly) works... See the question update. – derobert Mar 20 '09 at 16:38
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.