Function: use-completion-under-point
use-completion-under-point is a byte-compiled function defined in
completion.el.gz.
Signature
(use-completion-under-point)
Documentation
Add the completion symbol underneath the point into the completion buffer.
Source Code
;; Defined in /usr/src/emacs/lisp/completion.el.gz
(defun use-completion-under-point ()
"Add the completion symbol underneath the point into the completion buffer."
(let ((string (and enable-completion (symbol-under-point)))
(current-completion-source cmpl-source-cursor-moves))
(if string (add-completion-to-head string))))