VIM:我如何知道关键字使用了哪个突出显示规则?
:colorscheme default
文件类型是php。
谁能帮我找出突出显示规则?
:colorscheme default
The filetype is php.
Can anyone help me to find out the highlight rule ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
将列出所有定义的规则并进行预览。您还可以查询单个项目:
要手动查找光标下的任何语法组,有多种选择。我的函数是一个与键绑定的函数,如下所示:
它将列出该单词所属的每个语法组。
will list all defined rules with a preview. You can also query single items:
To manually look up any syntax group under the cursor, there are choices. Mine is a function bounded to a key like this:
It'll list every syntax group the word belongs to.
我已经把下面的代码片段藏起来有一段时间了,不知道从哪里得到的。这会将您的
statusline
设置为显示当前光标下单词的突出显示组:这将在您在文件中移动时更新您的
statusline
。I've had the following snippet tucked away for a while now, not sure where I got it. This will set your
statusline
to show the highlight group of the word currently under the cursor:This will update your
statusline
as you move around the file.我的 _gvimrc 中有这样的东西:
I have something like this in my _gvimrc: