Function: semantic-stickyfunc-popup-menu
semantic-stickyfunc-popup-menu is an interactive and byte-compiled
function defined in util-modes.el.gz.
Signature
(semantic-stickyfunc-popup-menu ARG1)
Documentation
Stickyfunc Menu.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/util-modes.el.gz
(easy-menu-define
semantic-stickyfunc-popup-menu
semantic-stickyfunc-mode-map
"Stickyfunc Menu."
'("Stickyfunc Mode" :visible (progn nil)
[ "Copy Headerline Tag" senator-copy-tag
:active (semantic-current-tag)
:help "Copy the current tag to the tag ring"]
[ "Kill Headerline Tag" senator-kill-tag
:active (semantic-current-tag)
:help "Kill tag text to the kill ring, and copy the tag to the tag ring"
]
[ "Copy Headerline Tag to Register" senator-copy-tag-to-register
:active (semantic-current-tag)
:help "Copy the current tag to a register"
]
[ "Narrow To Headerline Tag" senator-narrow-to-defun
:active (semantic-current-tag)
:help "Narrow to the bounds of the current tag"]
[ "Fold Headerline Tag" senator-fold-tag-toggle
:active (semantic-current-tag)
:style toggle
:selected (let ((tag (semantic-current-tag)))
(and tag (semantic-tag-folded-p tag)))
:help "Fold the current tag to one line"
]
"---"
[ "About This Header Line"
(lambda () (interactive)
(describe-function 'semantic-stickyfunc-mode)) t])
)