summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2022-05-19 17:51:26 -0700
committerFranck Cuny <franck@fcuny.net>2022-05-19 17:51:58 -0700
commit9699319800445d66fd251d367ee9090699a62eb2 (patch)
treee7d31729c5ade94ca2ea224eeb49abf1a098bcb7
parentfeat(snippets): add a few more snippets (diff)
downloademacs.d-9699319800445d66fd251d367ee9090699a62eb2.tar.gz
ref(text): replace dabbrev with hippie-expand
-rw-r--r--emacs/custom/my-text.el7
1 files changed, 3 insertions, 4 deletions
diff --git a/emacs/custom/my-text.el b/emacs/custom/my-text.el
index b4f7c28..0c99ba6 100644
--- a/emacs/custom/my-text.el
+++ b/emacs/custom/my-text.el
@@ -20,10 +20,9 @@
 (when (executable-find "pandoc")
   (customize-set-variable 'markdown-command "pandoc -f markdown -t html"))
 
-(eval-after-load 'dabbrev
-  (let ((map global-map))
-    (define-key map (kbd "M-/") #'dabbrev-expand)
-    (define-key map (kbd "C-x M-/") #'dabbrev-completion)))
+;; https://www.masteringemacs.org/article/text-expansion-hippie-expand
+;; replace default keybinding for `dabbrev' with `hippie-expand'
+(global-set-key (kbd "M-/") 'hippie-expand)
 
 (setq only-global-abbrevs nil)
 (eval-after-load 'abbrev