如何在 Emacs 中为@(符号)着色?

发布于 2024-10-18 12:20:03 字数 380 浏览 8 评论 0原文

我可以使用 .emacs 中的以下 lisp 代码为 emacs 中的关键字着色:

(add-hook 'c-mode-common-hook
          (lambda () (font-lock-add-keywords nil
           '(("\\<\\(bla[a-zA-Z1-9_]*\\)" 1 font-lock-warning-face t)))))

此代码为所有以“bla”开头的关键字着色。示例:blaTest123_test

但是,当我尝试添加@(“at”符号)而不是“bla”时,它似乎不起作用。我不认为@是正则表达式的特殊字符。

你知道如何让 emacs 突出显示以 @ 符号开头的关键字吗?

I can color keywords in emacs using the following lisp code in .emacs:

(add-hook 'c-mode-common-hook
          (lambda () (font-lock-add-keywords nil
           '(("\\<\\(bla[a-zA-Z1-9_]*\\)" 1 font-lock-warning-face t)))))

This code color all keywords that start with "bla". Example: blaTest123_test

However when I try to add @ (the 'at' symbol) instead of "bla", it doesn't seem to work. I don't think @ is a special character for regular expressions.

Do you know how I can get emacs to highlight keywords starting with the @ symbol?

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

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

发布评论

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

评论(1

青瓷清茶倾城歌 2024-10-25 12:20:03

您的问题是正则表达式中的 \<

匹配空字符串,但仅匹配单词的开头。 `\<'仅当后面有单词组成字符时,才在缓冲区(或字符串)的开头匹配。

并且 @ 不是单词组成字符。

请参阅: M-: (info "(elisp) Regexp Backslash") RET

这种不受限制的模式将为任何 @

(font-lock-add-keywords nil
  '(("@" 0 font-lock-warning-face t)))

这将通过预先要求 BOL 或一些空白来完成您想要的事情。

(font-lock-add-keywords nil
  '(("\\(?:^\\|\\s-\\)\\(@[a-zA-Z1-9_]*\\)" 1 font-lock-warning-face t)))

Your problem is the \< in your regexp, which

matches the empty string, but only at the beginning of a word. `\<' matches at the beginning of the buffer (or string) only if a word-constituent character follows.

and @ is not a word-constituent character.

See: M-: (info "(elisp) Regexp Backslash") RET

This unrestricted pattern will colour any @:

(font-lock-add-keywords nil
  '(("@" 0 font-lock-warning-face t)))

And this will do something like what you want, by requiring either BOL or some white space immediately beforehand.

(font-lock-add-keywords nil
  '(("\\(?:^\\|\\s-\\)\\(@[a-zA-Z1-9_]*\\)" 1 font-lock-warning-face t)))
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文