about summary refs log tree commit diff stats
path: root/.emacs.d/lisp
diff options
context:
space:
mode:
authorDavid Morgan <djm_uk@protonmail.com>2024-10-08 13:52:25 +0100
committerDavid Morgan <djm_uk@protonmail.com>2024-10-08 13:52:25 +0100
commite24b0a363a872ffae683fffc8a2ff74dfbbc7651 (patch)
treecaf35ddcc3aff2eb705e9116f893b71923b7793c /.emacs.d/lisp
parentad98eb36c7cd370350360e1b097d7e1a1e5867c5 (diff)
downloaddotfiles-e24b0a363a872ffae683fffc8a2ff74dfbbc7651.tar.gz
Ensure hippie-expand binding is applied
Diffstat (limited to '.emacs.d/lisp')
-rw-r--r--.emacs.d/lisp/init-completion.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/.emacs.d/lisp/init-completion.el b/.emacs.d/lisp/init-completion.el
index ab213ff..feb37bf 100644
--- a/.emacs.d/lisp/init-completion.el
+++ b/.emacs.d/lisp/init-completion.el
@@ -21,7 +21,10 @@
   :custom
   (dabbrev-case-distinction nil)
   (dabbrev-case-fold-search t)
-  (dabbrev-case-replace nil))
+  (dabbrev-case-replace nil)
+  ;; TODO remove this after 30.1
+  :bind
+  ("C-M-/" . hippie-expand))
 
 (use-feature hippie-expand
   :custom