Function: evil-next-close-paren

evil-next-close-paren is an interactive and byte-compiled function defined in evil-commands.el.

Signature

(evil-next-close-paren &optional COUNT)

Documentation

Go to COUNT next unmatched ")".

Key Bindings

Source Code

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