commit 1e13c0050886527d1330bba2765999fac456dfe9
parent 12cfef0c0cdf97cf5c8c1affb60c42acd5041c46
Author: KΓ©vin Le Gouguec <kevin.legouguec@gmail.com>
Date: Sun, 26 Jan 2025 00:00:50 +0100
Add fancy dashes to my/symbols input method
And insert an emoji for /!\. I can get the β with C-x 8.
Diffstat:
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/.config/emacs/init.el b/.config/emacs/init.el
@@ -59,6 +59,7 @@
(`(,key ,translation)
'(;; Punctuation
("..." ?β¦)
+ ("--" ?β) ("---" ?β)
;; Math symbols
("~~" ?β) ("~~=" ?β) ("~==" ?β
) ("~=" ?β)
("==" ?β‘) ("^=" ?β) (":=" ?β)
@@ -67,9 +68,7 @@
("<--" ?β) ("</-" ?β) ("<==" ?β) ("</=" ?β)
("<->" ?β) ("<=>" ?β)
;; Emojis
- ("\\o/" ?π) ("\\m/" ?π€)
- ;; Pictograms
- ("/!\\" ?β )))
+ ("/!\\" β οΈ) ("\\o/" ?π) ("\\m/" ?π€)))
(quail-defrule key translation "my/symbols"))
(defmacro my/make-input-toggle (input-method)