help-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: command help : matching braces


From: Matthew O. Smith
Subject: Re: command help : matching braces
Date: Mon, 8 Apr 2002 11:21:55 -0600

Hi,

I added curly brace matching as well.
Thanks.

(defun match-paren (arg)
  "Go to the matching parenthesis if on parenthesis, otherwise insert %.
(Like in VI editor).  Thanks Fernando Dobladez <ferd@fuego.com>"
  (interactive "p")
  (cond
   ((looking-at "\\s\(") (forward-list 1) (backward-char 1))
   ((looking-at "\\s\)") (forward-char 1) (backward-list 1))
   ((looking-at "\\s\{") (forward-list 1) (backward-char 1))
   ((looking-at "\\s\}") (forward-char 1) (backward-list 1))
   (t (self-insert-command (or arg 1)))))


----- Original Message -----
From: "Fernando Dobladez" <ferd@fuego.com>
To: "Ambardekar, Shailesh" <Shailesh.Ambardekar@corp.vizzavi.net>
Cc: <help-gnu-emacs@gnu.org>
Sent: Monday, April 08, 2002 11:07 AM
Subject: Re: command help : matching braces


> If you miss VI's % too much, you'd probably like to include the
> following in your .emacs:
>
> (defun match-paren (arg)
>   "Go to the matching parenthesis if on parenthesis, otherwise insert %.
> (Like in VI editor)"
>   (interactive "p")
>   (cond ((looking-at "\\s\(") (forward-list 1) (backward-char 1))
>     ((looking-at "\\s\)") (forward-char 1) (backward-list 1))
>     (t (self-insert-command (or arg 1)))))
>
> (global-set-key "%"                  'match-paren)
>
>
> That will make the '%' go to the matching brace if the cursor is on a
> brace, and it will insert "%" otherwise.
>
> Fernando.
>
>
> Ambardekar, Shailesh wrote:
>
> >In gnu emacs 20.3.1 under Sun Solaris 2.6,
> >what is the emacs command for going to the matching brace ?
> >( looking for emacs equivalent of % vi command ).
> >
> >Thanks in advance.
> >
> >Shailesh
> >
> >
>
>
>
> _______________________________________________
> Help-gnu-emacs mailing list
> Help-gnu-emacs@gnu.org
> http://mail.gnu.org/mailman/listinfo/help-gnu-emacs




reply via email to

[Prev in Thread] Current Thread [Next in Thread]