Function: evil-complete-previous

evil-complete-previous is an interactive and byte-compiled function defined in evil-commands.el.

Signature

(evil-complete-previous &optional ARG)

Documentation

Complete to the nearest preceding word.

Search forward if a match isn't found. Calls evil-complete-previous-func.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-command evil-complete-previous (&optional arg)
  "Complete to the nearest preceding word.
Search forward if a match isn't found.
Calls `evil-complete-previous-func'."
  :repeat change
  (interactive "P")
  (if (minibufferp)
      (funcall evil-complete-previous-minibuffer-func)
    (funcall evil-complete-previous-func arg)))