diff options
author | David Morgan <djm_uk@protonmail.com> | 2021-09-06 20:21:22 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2021-09-06 20:21:22 +0100 |
commit | ab2f5baad75e110f8628823dc725296f33d1582c (patch) | |
tree | 2de23f50be7bb47a108f02a9c6fcc2d3467c4723 /.emacs.d | |
parent | 903e201bc8696112cc7d55a78db8477781f96739 (diff) | |
download | dotfiles-ab2f5baad75e110f8628823dc725296f33d1582c.tar.gz |
Change hippie/dabbrev bindings
Diffstat (limited to '.emacs.d')
-rw-r--r-- | .emacs.d/lisp/init-completion.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.emacs.d/lisp/init-completion.el b/.emacs.d/lisp/init-completion.el index 8f2e1fb..415ba66 100644 --- a/.emacs.d/lisp/init-completion.el +++ b/.emacs.d/lisp/init-completion.el @@ -5,7 +5,9 @@ ;;; Code: (use-package dabbrev - :diminish) + :diminish + :bind + ("M-/" . dabbrev-completion)) (use-package hippie-expand :ensure nil @@ -23,7 +25,7 @@ try-complete-lisp-symbol-partially try-complete-lisp-symbol)) :bind - ("M-/" . hippie-expand)) + ("C-M-/" . hippie-expand)) (use-package fancy-dabbrev :diminish |