Function: semantic-symref-rb-goto-tag
semantic-symref-rb-goto-tag is an interactive and byte-compiled
function defined in list.el.gz.
Signature
(semantic-symref-rb-goto-tag &optional BUTTON)
Documentation
Go to the file specified in the symref results buffer.
BUTTON is the button that was clicked.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/symref/list.el.gz
(defun semantic-symref-rb-goto-tag (&optional button)
"Go to the file specified in the symref results buffer.
BUTTON is the button that was clicked."
(interactive)
(let* ((tag (button-get button 'tag))
(buff (semantic-tag-buffer tag))
(win (selected-window))
)
(switch-to-buffer-other-window buff)
(semantic-go-to-tag tag)
(pulse-momentary-highlight-one-line (point))
(when (eq last-command-event ?\s) (select-window win))
)
)