From cc7f3629d2da9f2fdf96e588562066fb3a229bfb Mon Sep 17 00:00:00 2001 From: Kévin Le Gouguec Date: Sun, 24 Mar 2019 17:13:18 +0100 Subject: Cosmetics MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit … an interesting game of whack-a-quote. I thought ("..." . ?…) might work, but alas… --- .emacs | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.emacs b/.emacs index c43e8a3..42154fd 100644 --- a/.emacs +++ b/.emacs @@ -63,18 +63,18 @@ (mapc (lambda (item) (quail-defrule (car item) (cdr item) "my/input-method")) - '( + (list ;; Punctuation - ("..." ?…) + '("..." ?…) ;; Math symbols - ("~~" ?≈) ("~=" ?≊) ("^=" ?≙) - ("-->" ?→) ("-/>" ?↛) ("==>" ?⇒) ("=/>" ?⇏) - ("<--" ?←) ("" ?↔) ("<=>" ?⇔) + '("~~" ?≈) '("~=" ?≊) '("^=" ?≙) + '("-->" ?→) '("-/>" ?↛) '("==>" ?⇒) '("=/>" ?⇏) + '("<--" ?←) '("" ?↔) '("<=>" ?⇔) ;; Emojis - ("\\o/" ?🙌) ("\\m/" ?🤘) + '("\\o/" ?🙌) '("\\m/" ?🤘) ;; Pictograms - ("/!\\" ?⚠))) + '("/!\\" ?⚠))) ;; What's life without a little risk? (setq disabled-command-function nil) -- cgit v1.2.3