]> git.eshelyaron.com Git - emacs.git/commit
; Avoid 'completion-at-point' in 'completion-preview-insert'
authorEshel Yaron <me@eshelyaron.com>
Mon, 20 Nov 2023 11:45:11 +0000 (12:45 +0100)
committerEli Zaretskii <eliz@gnu.org>
Sat, 25 Nov 2023 10:09:48 +0000 (12:09 +0200)
commitdd1c5cca70f77efb739f0157cac75ac7fd289fe2
treeecfe574182a2375e446f077ba88e2e15f755a49c
parent3c3c46f4298fca9349fab080d974bdf7cdc7c25a
; Avoid 'completion-at-point' in 'completion-preview-insert'

Insert the completion suggestion directly in
'completion-preview-insert' instead of using 'completion-at-point' to
do that.  This fixes an issue where 'completion-preview-insert' would
not work correctly when the user uses 'add-hook' with a DEPTH argument
below a certain value to add functions to
'completion-at-point-functions', and obviates the need to manipulate
'completion-at-point-functions' when showing the preview all together.

* lisp/completion-preview.el (completion-preview--make-overlay)
(completion-preview-prev-candidate)
(completion-preview-next-candidate)
(completion-preview-mode): Improve docstring.
(completion-preview--exit-function)
(completion-preview--insert)
(completion-preview-insert-on-completion): Remove, no longer used.
(completion-preview--get): Turn into a 'defsubst'.
(completion-preview-active-mode)
(completion-preview--capf-wrapper): Simplify.
(completion-preview--try-table)
(completion-preview--update): Keep the completion "base" as a property
of the preview overlay, for use in completion exit functions.
(completion-preview-insert): Insert completion and call exit function
directly instead of manipulating 'completion-at-point' to do so.
(Bug#67275)
lisp/completion-preview.el