Function: evil--without-search-wrap
evil--without-search-wrap is a byte-compiled function defined in
evil-search.el.
Signature
(evil--without-search-wrap ORIG-FUN &rest ARGS)
Documentation
Never wrap the search in this context.
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-search.el
(defun evil--without-search-wrap (orig-fun &rest args)
"Never wrap the search in this context."
(let (evil-search-wrap)
(apply orig-fun args)))