Vim 脚本:扩展字符串中的通配符
有一个 vim 变量,其字符串值如下:
foo%:p:r:sbar
%:p:r:s 是 vim 通配符。
如何展开字符串变量中的所有通配符?
不幸的是,expand(my_variable) 没有帮助。 我需要指定任何其他参数或使用其他 vim 函数吗?
谢谢。
There is a vim variable with the string value like this:
foo%:p:r:sbar
%:p:r:s is a vim wildcard.
How can I expand all wildcards in the string variable?
Unfortunately expand(my_variable) doesn't help.
Do I need to specify any additional argument or use other vim function?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试
:help Expand()
文档的这一部分似乎与您特别相关:
看起来您的尾随(可能还有前导)字符串无法与
expand()
一起使用。但这确实有效:
您可能可以重新编写脚本,以便在与其他字符串组合之前扩展通配符。或者,您可以尝试拆分连接的字符串,展开通配符,然后重新连接。
Try
:help expand()
This section of the docs seems especially relevant to you:
It looks like your trailing (and possibly leading) strings won't work with
expand()
.This does work though:
Possibly you can rework your script so wildcards are expanded before they are combined with other strings. Alternatively you could try to split the concatenated string, expand the wildcards, then re-concatenate.
怎么样
join(map(split(mystring, '\ze[<%#]'), 'expand(v:val)'), '')
?
What about
join(map(split(mystring, '\ze[<%#]'), 'expand(v:val)'), '')
?