vim 无法正确匹配 php 中的符号
<?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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您想使用 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 asb:match_words
) which can be tailored to determine how%
behaves -- recognized tokens, how they're related to each other, etc.