Function: evil--ex-bang-p
evil--ex-bang-p is a byte-compiled function defined in evil-ex.el.
Signature
(evil--ex-bang-p COMMAND)
Documentation
Return non-nil if the string COMMAND has a "!" suffix.
Source Code
;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-ex.el
(defsubst evil--ex-bang-p (command)
"Return non-nil if the string COMMAND has a \"!\" suffix."
(and (> (length command) 1) (eq (aref command (1- (length command))) ?!)))