Update the symbol prettifier lists

This commit is contained in:
Gergely Polonkai 2022-08-18 07:22:06 +02:00
parent 4e87ff3355
commit 18b2932f07
No known key found for this signature in database
GPG Key ID: 2D2885533B869ED4
1 changed files with 18 additions and 9 deletions

View File

@ -1208,12 +1208,16 @@ And set up all the pretty symbols.
#+BEGIN_SRC emacs-lisp
(setq prettify-symbols-alist
'(("lambda" . 955) ; λ
("function" . 402) ; ƒ
("->" . 8594) ; →
("=>" . 8658) ; ⇒
("map" . 8614) ; ↦
("not" . 172))) ; ¬
'(("lambda" . ?λ)
("function" . ?ƒ)
("->" . ?→)
("=>" . ?⇒)
("map" . ?↦)
("not" . ?¬)
("and" . ?∧)
("or" . ?)
("<=" . ?≤)
(">=" . ?≥)))
#+END_SRC
…and some pairs to complete
@ -2792,11 +2796,16 @@ Maybe add ∉ for ~not in~ later, if possible.
(add-hook 'python-mode-hook
(lambda ()
(add-to-list 'prettify-symbols-alist
'("not" . 172))
'("not in" . ?∉))
(add-to-list 'prettify-symbols-alist
'("in" . 8712))
'("in" . ?∈))
(add-to-list 'prettify-symbols-alist
'("def" . 402))))
'("def" . ?ƒ))
(add-to-list 'prettify-symbols-alist
'("is not" . ?≭))
(add-to-list 'prettify-symbols-alist
'("is" . ?≍))
))
#+END_SRC
** Pyre-based LSP