Function: actypes::completion
actypes::completion is an interactive and byte-compiled function
defined in hactypes.el.
Signature
(actypes::completion)
Documentation
Insert completion at point into the minibuffer or a buffer.
Unless point is at the end of the buffer or if a completion has already been inserted, delete the completions window.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hactypes.el
(defact completion ()
"Insert completion at point into the minibuffer or a buffer.
Unless point is at the end of the buffer or if a completion has already been
inserted, delete the completions window."
(interactive)
(if (smart-eobp)
(progn (bury-buffer nil)
(delete-window))
(hargs:completion)))