Function: crm-complete-word
crm-complete-word is an interactive and byte-compiled function defined
in crm.el.gz.
Signature
(crm-complete-word)
Documentation
Complete the current element at most a single word.
Like minibuffer-complete-word but for completing-read-multiple.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/crm.el.gz
(defun crm-complete-word ()
"Complete the current element at most a single word.
Like `minibuffer-complete-word' but for `completing-read-multiple'."
(interactive)
(crm--completion-command beg end
(completion-in-region--single-word beg end)))