答案 0 :(得分:1)
use-package
使用font-lock-add-keywords
标记font-lock-constant-face
的参数。在代码中用“test_macro”替换“use-package”会使你的论点同样着色
(defconst my-font-lock-keywords
'(("(\\(test_macro\\)\\_>[ \t']*\\(\\(?:\\sw\\|\\s_\\)+\\)?"
(1 font-lock-keyword-face)
(2 font-lock-constant-face nil t))))
(font-lock-add-keywords 'emacs-lisp-mode my-font-lock-keywords)