Function: evil-next-close-brace

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

Signature

(evil-next-close-brace &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-brace (count)
  "Go to COUNT next unmatched \"}\"."
  :jump t
  :type exclusive
  (forward-char)
  (evil-up-paren ?{ ?} (or count 1))
  (backward-char))