Function: evil-ex-global-inverted

evil-ex-global-inverted is an interactive and byte-compiled function defined in evil-commands.el.

Signature

(evil-ex-global-inverted BEG END &optional PATTERN COMMAND INVERT)

Documentation

The Ex vglobal command.

[BEG,END]vglobal/PATTERN/COMMAND

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-operator evil-ex-global-inverted
  (beg end pattern command &optional invert)
  "The Ex vglobal command.
\[BEG,END]vglobal/PATTERN/COMMAND"
  :motion mark-whole-buffer
  :move-point nil
  (interactive "<r><g/><!>")
  (evil-ex-global beg end pattern command (not invert)))