branch: externals/sxhkdrc-mode commit 8ab934d17091a81575e81e1568664661e777c2c1 Author: Protesilaos Stavrou <i...@protesilaos.com> Commit: Protesilaos Stavrou <i...@protesilaos.com>
Fix fontification of comments --- sxhkdrc-mode.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sxhkdrc-mode.el b/sxhkdrc-mode.el index 17d46b8b86..c29bd88f0f 100644 --- a/sxhkdrc-mode.el +++ b/sxhkdrc-mode.el @@ -6,7 +6,7 @@ ;; Maintainer: Protesilaos Stavrou General Issues <~protesilaos/general-iss...@lists.sr.ht> ;; URL: https://git.sr.ht/~protesilaos/sxhkdrc-mode ;; Mailing-List: https://lists.sr.ht/~protesilaos/general-issues -;; Version: 0.1.1 +;; Version: 0.1.2 ;; Package-Requires: ((emacs "27.1")) ;; This file is NOT part of GNU Emacs. @@ -92,6 +92,8 @@ key chord chain (demarcated by a colon or semicolon)." (,(alist-get 'command syntax) (1 'sxhkdrc-mode-command-async t t) (2 'sxhkdrc-mode-command t t)) + (,(alist-get 'comment syntax) + (0 'font-lock-comment-face)) (,(alist-get 'key-generic syntax) (0 'sxhkdrc-mode-generic-key)))) "Fontification of sxhkdrc files.")