Variable: evil-complete-next-line-func
evil-complete-next-line-func is a customizable variable defined in
evil-vars.el.
Value
#[257 "\301\302!)\207"
[hippie-expand-try-functions-list
(try-expand-line try-expand-line-all-buffers) hippie-expand]
3
("/root/.emacs.d/elpa/evil-20251108.138/evil-vars.elc" . 16619)]
Documentation
Minibuffer completion function used by C-x C-n (evil-complete-next-line).
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-vars.el
(defcustom evil-complete-next-line-func
#'(lambda (arg)
(let ((hippie-expand-try-functions-list
'(try-expand-line
try-expand-line-all-buffers)))
(hippie-expand arg)))
"Minibuffer completion function used by \
\\<evil-insert-state-map>\\[evil-complete-next-line]."
:type 'function
:group 'evil)