Function: crm-complete
crm-complete is an interactive and byte-compiled function defined in
crm.el.gz.
Signature
(crm-complete)
Documentation
Complete the current element.
If no characters can be completed, display a list of possible completions.
Return t if the current element is now a valid match; otherwise return nil.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/crm.el.gz
(defun crm-complete ()
"Complete the current element.
If no characters can be completed, display a list of possible completions.
Return t if the current element is now a valid match; otherwise return nil."
(interactive)
(crm--completion-command beg end
(completion-in-region beg end
minibuffer-completion-table
minibuffer-completion-predicate)))