如何转义 vimrc 文件中的 % 字符?
我怎样才能转义这个例子中的 %
?
func! my_func()
exec "!printf '=%.0s' {1..100}"
endfunc
How could I escape the %
in this example?
func! my_func()
exec "!printf '=%.0s' {1..100}"
endfunc
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于作为单个参数(不是空格分隔的参数列表)并且可能包含特殊字符(包括空格本身)的任何字符串,请使用 shellescape:
Use
shellescape
for any string that is a single argument (not a list of space-separated arguments) and may contains special characters (including space itself):