Emacs 正则表达式和语法高亮

发布于 2024-11-29 16:52:34 字数 260 浏览 4 评论 0原文

我想突出显示一些单词(例如“true”、“false”),但仅当它们位于标签 ?> 之间时。

在下面的示例中,我只想突出显示第二个“true”关键字:

<input checked="true"><?=($i === true ? $foo : $bar)?>

对于这种情况是否有任何特殊的字体锁定模式?

I want to highlight some words (ex. "true", "false"), but only when they are between the tags <?= and ?>.

In the example below I only want to highlight the second "true" keyword:

<input checked="true"><?=($i === true ? $foo : $bar)?>

Is there any special font-locking mode for this kind of situation?

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

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

发布评论

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

评论(1

别想她 2024-12-06 16:52:34

除了匹配正则表达式之外,字体锁还可以调用函数:

通过调用函数查找文本,并突出显示找到的匹配项
使用 font-lock-keyword-face。

http://www.gnu.org/s/emacs /manual/html_node/elisp/Search_002dbased-Fontification.html

只有您需要了解 Elisp。

Font lock can call functions too in addition to matching regexps:

Find text by calling function, and highlight the matches it finds
using font-lock-keyword-face.

http://www.gnu.org/s/emacs/manual/html_node/elisp/Search_002dbased-Fontification.html

Only you need to know Elisp.

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