File tree Expand file tree Collapse file tree 1 file changed +4
-0
lines changed
Expand file tree Collapse file tree 1 file changed +4
-0
lines changed Original file line number Diff line number Diff line change @@ -206,6 +206,9 @@ describing the last `clojure-load-file' or `clojure-compile-file' command.")
206206(defconst clojure-mode-version " 3.0.0-snapshot"
207207 " The current version of `clojure-mode' ." )
208208
209+ (defconst clojure--prettify-symbols-alist
210+ '((" fn" . ?λ )))
211+
209212(defun clojure-mode-display-version ()
210213 " Display the current `clojure-mode-version' in the minibuffer."
211214 (interactive )
@@ -284,6 +287,7 @@ ENDP and DELIMITER."
284287 (setq-local lisp-doc-string-elt-property 'clojure-doc-string-elt )
285288 (setq-local inferior-lisp-program clojure-inf-lisp-command)
286289 (setq-local parse-sexp-ignore-comments t )
290+ (setq-local prettify-symbols-alist clojure--prettify-symbols-alist)
287291 (clojure-font-lock-setup)
288292 (setq-local open-paren-in-column-0-is-defun-start nil )
289293 (add-hook 'paredit-mode-hook 'clojure-paredit-setup ))
You can’t perform that action at this time.
0 commit comments