diff options
author | David Morgan <djm_uk@protonmail.com> | 2024-10-04 08:04:34 +0100 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2024-10-04 08:04:34 +0100 |
commit | 86b94843735c9b4082ab84b08f36893505a4dd1f (patch) | |
tree | 4242b62f58019242acf0818e1f342b62d8672456 | |
parent | 8f87ca139c225786e3c1670892b1b7ef70f73436 (diff) | |
download | dotfiles-86b94843735c9b4082ab84b08f36893505a4dd1f.tar.gz |
Apply fix for dabbrev bug until 30.1 is released
-rw-r--r-- | .emacs.d/lisp/init-completion.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.emacs.d/lisp/init-completion.el b/.emacs.d/lisp/init-completion.el index 98fd0fa..e0efdb3 100644 --- a/.emacs.d/lisp/init-completion.el +++ b/.emacs.d/lisp/init-completion.el @@ -5,6 +5,9 @@ ;;; Code: (use-feature dabbrev + ;; Load newer version until 30.1 is released + ;; https://mail.gnu.org/archive/html/bug-gnu-emacs/2024-05/msg00422.html + :load-path "elpaca/repos/project/lisp/dabbrev.el" :custom (dabbrev-case-distinction nil) (dabbrev-case-fold-search t) |