定义我自己的命令
我试图在 MacVim 中定义自己的命令,将 ac 语句或语句范围转换为注释。所以我把它放在我的 vimrc 中:
command -range Com :<line1>,<line2>s?^.*$?/*&*/?
如果我只输入 :Com 来注释当前行,它就可以正常工作。但是,如果我输入类似 :Com 3 5 的内容以便将第 3 行到第 5 行变成注释,我总是会收到此错误消息:
E488: Trailing characters
有人可以帮忙吗?
I'm trying to define my own command in MacVim to turn a c statement or range of statements into comments. So I put this in my vimrc:
command -range Com :<line1>,<line2>s?^.*$?/*&*/?
It works fine if I just enter :Com to comment the current line. But if I enter something like :Com 3 5 in order to turn lines 3 thru 5 into comments I always get this error message:
E488: Trailing characters
Can anyone help?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要在命令之前提供范围,如下所示:
无论如何,我建议您检查 NERD_commenter 插件。它非常适合注释源代码。
You need to provide the range before the command, like that:
Anyway, I suggest you to check the NERD_commenter plugin. It's great for commenting source code.