vim : 在 :h 中展开
我如何在vim帮助文件中使用expand,类似于
:h expand('%:t:r').'-content'
我得到的
E149: Sorry, no help for expand('%:t:r').'-content'
how I can use expand in the vim help file, similar to this
:h expand('%:t:r').'-content'
I get
E149: Sorry, no help for expand('%:t:r').'-content'
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
构建字符串并将其传递给
:execute
:Build your string and pass it to
:execute
:实现此效果的一种方法是通过表达式寄存器或后跟表达式的
=
。
后跟寄存器将在插入模式和命令模式下插入寄存器的内容。=
寄存器是一个特殊寄存器,它将执行表达式并返回其值。该表达式寄存器的常见用途是进行数学运算。例如有关更多帮助,请参阅:
One way of accomplishing this effect is via the expression register or
<c-r>=
followed by an expression.<c-r>
followed by a register will insert the contents of a register in both insert and command mode. The=
register is a special register that will execute an expression and return its value. A common use of this expression register is doing math. e.g.<c-r>=2+2<cr>
For more help see: