Function: semantic-mrub-switch-tags
semantic-mrub-switch-tags is an interactive and byte-compiled function
defined in mru-bookmark.el.gz.
Signature
(semantic-mrub-switch-tags TAGMARK)
Documentation
Switch tags to TAGMARK.
Selects a new tag via prompt through the mru tag ring. Jumps to the tag and highlights it briefly.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/mru-bookmark.el.gz
(defun semantic-mrub-switch-tags (tagmark)
"Switch tags to TAGMARK.
Selects a new tag via prompt through the mru tag ring.
Jumps to the tag and highlights it briefly."
(interactive (list (semantic-mrub-completing-read "Switch to tag")))
(if (not (semantic-bookmark-p tagmark))
(signal 'wrong-type-argument tagmark))
(semantic-mrub-push semantic-mru-bookmark-ring
(point)
'jump)
(semantic-mrub-visit tagmark)
)