dotfiles

🎜 Clone'em, tweak'em, stick'em in your $HOME 🎝
git clone https://git.kevinlegouguec.net/dotfiles
Log | Files | Refs | README

commit 15e2814706ea971b5fd917a694fdbb3fd91a26bd
parent 6473d813fd7e65db75842fd15715b46c8e23e492
Author: KΓ©vin Le Gouguec <kevin.legouguec@gmail.com>
Date:   Sat, 25 May 2019 12:14:14 +0200

Add more "sorta-equal" symbols to my/input-method

β‰ˆ       ALMOST EQUAL TO
β‰Š       ALMOST EQUAL OR EQUAL TO
β‰…       APPROXIMATELY EQUAL TO
≃       ASYMPTOTICALLY EQUAL TO
≑       IDENTICAL TO
≙       ESTIMATES
≔       COLON EQUALS

Diffstat:
M.emacs | 3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/.emacs b/.emacs @@ -48,7 +48,8 @@ ;; Punctuation '("..." ?…) ;; Math symbols - '("~~" ?β‰ˆ) '("~=" ?β‰Š) '("^=" ?≙) + '("~~" ?β‰ˆ) '("~~_" ?β‰Š) '("~=" ?β‰…) '("~_" ?≃) + '("=_" ?≑) '("^=" ?≙) '(":=" ?≔) '("-->" ?β†’) '("-/>" ?↛) '("==>" ?β‡’) '("=/>" ?⇏) '("<--" ?←) '("</-" ?β†š) '("<==" ?⇐) '("</=" ?⇍) '("<->" ?↔) '("<=>" ?⇔)