Function: completion-preview-insert-word
completion-preview-insert-word is an interactive and byte-compiled
function defined in completion-preview.el.gz.
Signature
(completion-preview-insert-word &optional N)
Documentation
Insert the first N words of the current completion preview candidate.
Interactively, N is the numeric prefix argument, and it defaults to 1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/completion-preview.el.gz
(defun completion-preview-insert-word (&optional n)
"Insert the first N words of the current completion preview candidate.
Interactively, N is the numeric prefix argument, and it defaults to 1."
(interactive "^p" completion-preview-active-mode)
(completion-preview-partial-insert #'forward-word n))