-
I'm using the Emacs built-in When running the The package information:
My configuration is: (use-package cape
:init
(add-to-list 'completion-at-point-functions #'cape-dabbrev)
(add-to-list 'completion-at-point-functions #'cape-file)
(add-to-list 'completion-at-point-functions #'cape-elisp-block)
(add-to-list 'completion-at-point-functions #'cape-history)
(add-to-list 'completion-at-point-functions #'cape-keyword)
:config
(message "cape is loaded")
:bind ( :prefix-map cape-prefix-map
:prefix "C-c p"
("p" . completion-at-point)
("t" . complete-tag)
("d" . cape-dabbrev)
("h" . cape-history)
("f" . cape-file)
("k" . cape-keyword)
("s" . cape-elisp-symbol)
("e" . cape-elisp-block)
("a" . cape-abbrev)
("l" . cape-line)
("w" . cape-dict)
(":" . cape-emoji)
("\\" . cape-tex)
("_" . cape-tex)
("^" . cape-tex)
("&" . cape-sgml)
("r" . cape-rfc1345)))
(use-package tempel
:config
(message "tempel is loaded")
(defun tempel-setup-capf ()
(setq-local completion-at-point-functions
(cons #'tempel-expand
completion-at-point-functions)))
:custom
(tempel-trigger-prefix "<")
:hook
((conf-mode prog-mode text-mode) . tempel-setup-capf))
(use-package tempel-collection
:pin melpa
:after tempel
:config
(message "tempel-collection is loaded")) |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 2 replies
-
Hi, I've also seen |
Beta Was this translation helpful? Give feedback.
Hi, I've also seen
package-autoremove
returning false positives. I suggest to avoid it, or to simply reinstall the packages which are missing after an auto remove. If you can narrow down the problem, you may want to report it upstream viaM-x report-emacs-bug
. Anyway, I recommend to keep an eye on all your installed packages and to manually remove cruft from time to time.