Function: evil-ex-regex-without-case

evil-ex-regex-without-case is a byte-compiled function defined in evil-search.el.

Signature

(evil-ex-regex-without-case RE)

Documentation

Return the regular expression without all occurrences of \c and \C.

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-search.el
;;; Ex search

(defun evil-ex-regex-without-case (re)
  "Return the regular expression without all occurrences of \\c and \\C."
  (evil-transform-regexp re '((?c . "") (?C . ""))))