作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
您好,我正在尝试编写我的第一个 vim 脚本。我想编写一个函数,通过 block 或大括号注释掉 PHP 代码。
这是我想出的,但我无法让它工作:
:function Mycom()
:let b = line(".")
:echo "this is "b
// trying to grab the matching bracket, not sure wheather this is ok
:%
//keeps missing and going to end og file
:let e = line(".")
:echo "here is end" e
//here is where i want to comment out the block
:echo b,e s%^%//%
:endfunction
最佳答案
:
在每一行上 — 除非您在 Vim 命令行中编写函数,Vim 将添加 :
自动为您服务。 (不过,最好将脚本写入文件;这样更容易修改和测试。)"
开头(双引号),不是 //
.%
或 dd
, 你可以使用 normal! %
或 normal! dd
.echo b,e s%...
不会工作。如果你想echo
正文,试试echo b.','.e.' s%^%//%'
.另外,考虑使用 echom
而不是 echo
.因为echom
将消息保存在消息历史记录中,您可以稍后使用 :mess
重新阅读它.
P.S. 如果您的光标位于打开的 {
上(我看到你试图在你的脚本中使用 %
),你可以使用
ctrl-v%I//<esc>
关于vim - 使用 vimscript 注释掉代码,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16599031/
我正在编写一个快速的 preg_replace 来从 CSS 中删除注释。 CSS 注释通常有这样的语法: /* Development Classes*/ /* Un-comment me for
使用 MySQL,我有三个表: 项目: ID name 1 "birthday party" 2 "soccer match" 3 "wine tasting evening" 4
我是一名优秀的程序员,十分优秀!