Skip to content

Commit a2e30bd

Browse files
authored
Add Emacs Unicode from lockywolf (#51)
1 parent fc86b3c commit a2e30bd

File tree

1 file changed

+35
-2
lines changed

1 file changed

+35
-2
lines changed

recipes/display-unicode-symbols-in-emacs.md

+35-2
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@ special Unicode characters like `λ` and `≥`.
77

88
## Solution
99

10-
The following works in modern versions of GNU Emacs:
10+
The following solutions work in modern versions of GNU Emacs.
1111

12-
```Emacs Lisp
12+
### Arrows and lambda
13+
14+
```Emacs-Lisp
1315
(defvar pretty-scheme-keywords
1416
(mapcar (lambda (pair)
1517
(cons (concat "\\(" (regexp-quote (car pair)) "\\)")
@@ -38,3 +40,34 @@ The following works in modern versions of GNU Emacs:
3840
```
3941

4042
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.

0 commit comments

Comments
 (0)