At 01:55 PM 1/20/00 -0500, Paul Kinnucan wrote:

>finds the constructor. Subsequent prefixed commands cycle through various
>methods that return Hashtable and finally you get back to the class
>declaration.
>
>I believe in my old job somebody bound the prefixed find-tag command to M-,
>keystrokes. So you could do
>
>M-. Hashtable
>M-, 
>M-,
>
>to cycle through all the hits for Hashtable in the TAGS table.
>

I've done this for myself by inserting the following into my .emacs file:

(defun find-next-tag ()
  (interactive)
  (find-tag last-tag t))

(global-set-key "\M-," 'find-next-tag)

- Paul

Reply via email to