diff options
author | David Morgan <djm_uk@protonmail.com> | 2023-11-15 14:17:04 +0000 |
---|---|---|
committer | David Morgan <djm_uk@protonmail.com> | 2023-11-15 14:17:04 +0000 |
commit | f2785a53af2e21c170c3fe6390c1e7674f67605a (patch) | |
tree | 66cad6f7c0a83eefb7b2ba7d62f3db5b43ce721f /.emacs.d/lisp | |
parent | 05bbec025e7ce61724be4c4c224c89ca41c6ec64 (diff) | |
download | dotfiles-f2785a53af2e21c170c3fe6390c1e7674f67605a.tar.gz |
Remove references to deprecated cape-ispell
Diffstat (limited to '.emacs.d/lisp')
-rw-r--r-- | .emacs.d/lisp/init-completion.el | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/.emacs.d/lisp/init-completion.el b/.emacs.d/lisp/init-completion.el index 5928f27..8b3f37d 100644 --- a/.emacs.d/lisp/init-completion.el +++ b/.emacs.d/lisp/init-completion.el @@ -170,7 +170,6 @@ no words in between, beginning with the first word." ("C-c p k" . cape-keyword) ("C-c p s" . cape-symbol) ("C-c p a" . cape-abbrev) - ("C-c p i" . cape-ispell) ("C-c p l" . cape-line) ("C-c p w" . cape-dict) ("C-c p \\" . cape-tex) @@ -183,8 +182,7 @@ no words in between, beginning with the first word." :init (add-to-list 'completion-at-point-functions #'cape-file t) (add-to-list 'completion-at-point-functions #'cape-dabbrev t) - (add-to-list 'completion-at-point-functions #'cape-dict t) - (add-to-list 'completion-at-point-functions #'cape-ispell t)) + (add-to-list 'completion-at-point-functions #'cape-dict t)) (provide 'init-completion) ;;; init-completion.el ends here |