定义我自己的命令

发布于 2024-11-10 16:38:33 字数 315 浏览 3 评论 0原文

我试图在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

长安忆 2024-11-17 16:38:33

您需要在命令之前提供范围,如下所示:

:3,5Com

无论如何,我建议您检查 NERD_commenter 插件。它非常适合注释源代码。

You need to provide the range before the command, like that:

:3,5Com

Anyway, I suggest you to check the NERD_commenter plugin. It's great for commenting source code.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文