-
I'm looking for a similar thing like |
Beta Was this translation helpful? Give feedback.
Answered by
minad
Mar 27, 2024
Replies: 1 comment
-
You can execute something like this in a buffer to extend the existing Capfs with dabbrev/yasnippet: (defvar-local orig-capfs nil)
(unless orig-capfs
(setq-local orig-capfs completion-at-point-functions))
(setq-local completion-at-point-functions
(mapcar
(lambda (f) (cape-capf-super f :with cape-dabbrev yasnippet-capf))
orig-capfs)) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
minad
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can execute something like this in a buffer to extend the existing Capfs with dabbrev/yasnippet: