vim 无法正确匹配 php 中的符号

发布于 2024-12-08 01:08:54 字数 311 浏览 0 评论 0原文

<?php
    $foo->bar();
?>

如果当光标位于第一个“<”上时按 %光标移动到下一个“>”而不是最后一行中的那个。

有机会解决这个问题吗?

编辑:

我的 vim 版本:

$ vim --version
VIM - Vi IMproved 7.3 (2010 Aug 15, compiled Mar 24 2011 07:09:45)

我还安装了 matchit.vim 以应对重要的情况。

<?php
    $foo->bar();
?>

If you press % while the cursor is on the first '<' the cursor moves to the next '>' instead of the one in the last line.

Any chance to fix this?

edit:

my vim version:

$ vim --version
VIM - Vi IMproved 7.3 (2010 Aug 15, compiled Mar 24 2011 07:09:45)

i also have matchit.vim installed for the case that it matters.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

空心空情空意 2024-12-15 01:08:54

您想使用 matchit 插件。这允许根据正在编辑的给定文件类型更智能地匹配标记。 :help matchit-install 将告诉您如何将 matchit 设置为在启动时获取,以便在您编辑时可用。

设置完成后,当您编辑 PHP 文件时,将为 % 创建一个运行 matchit 功能的地图。它还定义了各种缓冲区局部变量(例如 b:match_words),可以定制这些变量来确定 % 的行为方式——识别的标记,它们与每个标记的关系其他等等

You want to use the matchit plugin. That allows smarter matching of tokens based on the given filetype being edited. :help matchit-install will tell you how you can setup matchit to be sourced on startup so it's available when you're editing.

Once it's setup, when you edit a PHP file, a map will be created for % that runs matchit's functionality. It also defines various buffer-local variables (such as b:match_words) which can be tailored to determine how % behaves -- recognized tokens, how they're related to each other, etc.

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