From 12a6769cc33aab51fb076c4a0b8e74c4fcb3e3cb Mon Sep 17 00:00:00 2001 From: Ivan Malison Date: Fri, 15 Jul 2016 13:39:31 -0700 Subject: [PATCH] Fix clojure special character font-highlighting --- dotfiles/emacs.d/README.org | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dotfiles/emacs.d/README.org b/dotfiles/emacs.d/README.org index fcdb7356..4f577356 100644 --- a/dotfiles/emacs.d/README.org +++ b/dotfiles/emacs.d/README.org @@ -2415,13 +2415,13 @@ The following is taken from [[https://github.com/syl20bnr/spacemacs/blob/a650877 "Pretty symbols for Clojure's anonymous functions and sets, like (λ [a] (+ a 5)), ƒ(+ % 5), and ∈{2 4 6}." (font-lock-add-keywords mode - `(("(\\(fn\\)[\[[:space:]]" + `(("(\\(fn\\)[\n\[[:space:]]" (0 (progn (compose-region (match-beginning 1) (match-end 1) "λ")))) ("(\\(partial\\)[\[[:space:]]" (0 (progn (compose-region (match-beginning 1) (match-end 1) "Ƥ")))) - ("(\\(comp\\)[\[[:space:]]" + ("(\\(comp\\)[\n\[[:space:]]" (0 (progn (compose-region (match-beginning 1) (match-end 1) "∘")))) ("\\(#\\)("