Function: evil-complete-next

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

Signature

(evil-complete-next &optional ARG)

Documentation

Complete to the nearest following word.

Search backward if a match isn't found. Calls evil-complete-next-func.

Key Bindings

Source Code

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