From 89f709f4a43feafca0cac8133c4031a976d16778 Mon Sep 17 00:00:00 2001 From: Bryan Gilbert Date: Fri, 9 Oct 2020 15:14:18 -0400 Subject: [PATCH] Fix ligature documentation typo Fixes 4061 --- modules/ui/ligatures/README.org | 77 ++++++++++++++++----------------- 1 file changed, 38 insertions(+), 39 deletions(-) diff --git a/modules/ui/ligatures/README.org b/modules/ui/ligatures/README.org index df5a16271..66d969ff1 100644 --- a/modules/ui/ligatures/README.org +++ b/modules/ui/ligatures/README.org @@ -172,45 +172,44 @@ if you don't like the symbols chosen you can change them by using... #+BEGIN_SRC emacs-lisp ;; you don't need to include all of them you can pick and mix -(plist-put +ligatures-extra-symbols - '(;; org - :name "»" - :src_block "»" - :src_block_end "«" - :quote "“" - :quote_end "”" - ;; Functional - :lambda "λ" - :def "ƒ" - :composition "∘" - :map "↦" - ;; Types - :null "∅" - :true "𝕋" - :false "𝔽" - :int "ℤ" - :float "ℝ" - :str "𝕊" - :bool "𝔹" - :list "𝕃" - ;; Flow - :not "¬" - :in "∈" - :not-in "∉" - :and "∧" - :or "∨" - :for "∀" - :some "∃" - :return "⟼" - :yield "⟻" - ;; Other - :union "⋃" - :intersect "∩" - :diff "∖" - :tuple "⨂" - :pipe "" ;; FIXME: find a non-private char - :dot "•")) - ;; you could also add your own if you want +(plist-put! +ligatures-extra-symbols + ;; org + :name "»" + :src_block "»" + :src_block_end "«" + :quote "“" + :quote_end "”" + ;; Functional + :lambda "λ" + :def "ƒ" + :composition "∘" + :map "↦" + ;; Types + :null "∅" + :true "𝕋" + :false "𝔽" + :int "ℤ" + :float "ℝ" + :str "𝕊" + :bool "𝔹" + :list "𝕃" + ;; Flow + :not "¬" + :in "∈" + :not-in "∉" + :and "∧" + :or "∨" + :for "∀" + :some "∃" + :return "⟼" + :yield "⟻" + ;; Other + :union "⋃" + :intersect "∩" + :diff "∖" + :tuple "⨂" + :pipe "" ;; FIXME: find a non-private char + :dot "•") ;; you could also add your own if you want #+END_SRC * TODO Troubleshooting