Function: evil-previous-open-paren

evil-previous-open-paren is an interactive and byte-compiled function defined in evil-commands.el.

Signature

(evil-previous-open-paren &optional COUNT)

Documentation

Go to COUNT previous unmatched "(".

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/evil-20251108.138/evil-commands.el
(evil-define-motion evil-previous-open-paren (count)
  "Go to COUNT previous unmatched \"(\"."
  :jump t
  :type exclusive
  (evil-up-paren ?\( ?\) (- (or count 1))))