作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在文件的某些地方插入文件名和行号。例如这一行:
_debug('init');
我要换
:s/debug('/debug('(%current_filename_here%:%current_line_number_here%)\ /g
得到这个
_debug('(filename.ext:88) init');
我尝试使用 expand('%:t'
) 来获取文件名和 line("."
) 来获取行号,但我不知道如何在替换表达式中使用它。
我该怎么做?
最佳答案
您可以使用 \=
.例如:
:s@_debug('\zs@\=printf('(%s:%d) ', expand('%:t'), line('.'))@
When the {replacement} starts with
"\="
it is evaluated as an expression,
关于vim - 如何用 Vim 中的函数结果替换字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10911247/
我是一名优秀的程序员,十分优秀!