Function: semantic-ia-sb-show-tag-info
semantic-ia-sb-show-tag-info is an interactive and byte-compiled
function defined in ia-sb.el.gz.
Signature
(semantic-ia-sb-show-tag-info)
Documentation
Display information about the tag on the current line.
Same as clicking on the <i> button.
See semantic-ia-sb-tag-info for more.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/ia-sb.el.gz
(defun semantic-ia-sb-show-tag-info ()
"Display information about the tag on the current line.
Same as clicking on the <i> button.
See `semantic-ia-sb-tag-info' for more."
(interactive)
(let ((tok nil))
(save-excursion
(end-of-line)
(forward-char -1)
(setq tok (get-text-property (point) 'speedbar-token)))
(semantic-ia-sb-tag-info nil tok 0)))