Tagged Questions
6
votes
2answers
2k views
How to expand variables in vim commands?
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 ...