如何在vim命令中扩展变量?
我正在尝试在命令调用中扩展变量。 这是我的 .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
在 :
提示符处,`=flist`
语法似乎有效(或者,至少它使用 w:
变量执行此操作),但在 .vimrc
文件中却没有 — TlistAddFiles 只是传递了字符串 `=flist`
。
感谢安德鲁·巴尼特(Andrew Barnett)和米科拉·戈卢比耶夫(Mykola Golubyev)的回答,我现在得到了这个,它似乎有效。 难道就没有更好的办法了吗?
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
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试一下
您的编辑:
Try just
To your edit:
类似的东西
可能会起作用。
Something like
might work.