Variable: semantic-symref-list-menu-entries
semantic-symref-list-menu-entries is a variable defined in list.el.gz.
Value
("Symref"
["Toggle Line Open" semantic-symref-list-toggle-showing :active t
:help "Toggle the current line open or closed."]
["Expand All Entries" semantic-symref-list-expand-all :active t :help
"Expand every expandable entry."]
["Contract All Entries" semantic-symref-list-contract-all :active t
:help "Close every expandable entry."]
["Rename Symbol in Open hits" semantic-symref-list-rename-open-hits
:active t :help
"Rename the searched for symbol in all hits that are currently open."])
Documentation
Menu entries for the Semantic Symref list mode.
Source Code
;; Defined in /usr/src/emacs/lisp/cedet/semantic/symref/list.el.gz
(defvar semantic-symref-list-menu-entries
(list
"Symref"
["Toggle Line Open"
semantic-symref-list-toggle-showing
:active t
:help "Toggle the current line open or closed." ]
["Expand All Entries"
semantic-symref-list-expand-all
:active t
:help "Expand every expandable entry." ]
["Contract All Entries"
semantic-symref-list-contract-all
:active t
:help "Close every expandable entry." ]
["Rename Symbol in Open hits"
semantic-symref-list-rename-open-hits
:active t
:help "Rename the searched for symbol in all hits that are currently open."
])
"Menu entries for the Semantic Symref list mode.")