Function: vi-find-matching-paren

vi-find-matching-paren is an interactive and byte-compiled function defined in vi.el.gz.

Signature

(vi-find-matching-paren)

Documentation

Locate the matching paren. It's a hack right now.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/vi.el.gz
(defun vi-find-matching-paren ()
  "Locate the matching paren.  It's a hack right now."
  (interactive)
  (cond ((looking-at "[[({]") (forward-sexp 1) (backward-char 1))
	((looking-at "[])}]") (forward-char 1) (backward-sexp 1))
        (t (ding))))