File tree 1 file changed +35
-2
lines changed
1 file changed +35
-2
lines changed Original file line number Diff line number Diff line change @@ -7,9 +7,11 @@ special Unicode characters like `λ` and `≥`.
7
7
8
8
## Solution
9
9
10
- The following works in modern versions of GNU Emacs:
10
+ The following solutions work in modern versions of GNU Emacs.
11
11
12
- ``` Emacs Lisp
12
+ ### Arrows and lambda
13
+
14
+ ``` Emacs-Lisp
13
15
(defvar pretty-scheme-keywords
14
16
(mapcar (lambda (pair)
15
17
(cons (concat "\\(" (regexp-quote (car pair)) "\\)")
@@ -38,3 +40,34 @@ The following works in modern versions of GNU Emacs:
38
40
```
39
41
40
42
Credit: [ Arthur A. Gleckler] ( https://speechcode.com/ )
43
+
44
+ ### APL-like characters
45
+
46
+ ``` Emacs-Lisp
47
+ (add-hook
48
+ 'scheme-mode-hook
49
+ (lambda ()
50
+ (setq prettify-symbols-alist
51
+ (seq-concatenate
52
+ 'list
53
+ '(("<=" . ?≤)
54
+ (">=" . ?≥)
55
+ ("define" . ?≝)
56
+ ("set!" . ?≐)
57
+ ("set-car!" . ?≔)
58
+ ("set-cdr!" . ?≕)
59
+ ("#t" . ?✓)
60
+ ("#f" . ?✗)
61
+ ("'()" . ?∅)
62
+ ("if" . ?⁇)
63
+ ("or" . ?∨)
64
+ ("and" . ?∧))
65
+ prettify-symbols-alist))))
66
+ ```
67
+
68
+ Credit: [ Vladimir Nikishkin] ( https://lockywolf.net/ )
69
+
70
+ ### Greek letters
71
+
72
+ A [ ` prettify-greek ` ] ( https://melpa.org/#/prettify-greek ) package can
73
+ be installed from MELPA.
You can’t perform that action at this time.
0 commit comments