diff options
author | David Morgan <djm_uk@protonmail.com> | 2024-10-08 13:52:25 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2024-10-08 13:52:25 +0100 |
commit | e24b0a363a872ffae683fffc8a2ff74dfbbc7651 (patch) | |
tree | caf35ddcc3aff2eb705e9116f893b71923b7793c /.emacs.d/lisp | |
parent | ad98eb36c7cd370350360e1b097d7e1a1e5867c5 (diff) | |
download | dotfiles-e24b0a363a872ffae683fffc8a2ff74dfbbc7651.tar.gz |
Ensure hippie-expand binding is applied
Diffstat (limited to '.emacs.d/lisp')
-rw-r--r-- | .emacs.d/lisp/init-completion.el | 5 |
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 |