Variable: srecode-menu-bar

srecode-menu-bar is a variable defined in mode.el.gz.

Value

("SRecoder"
 ["Insert Template" srecode-insert :active t :help
  "Insert a template by name."]
 ["Insert Template Again" srecode-insert-again :active t :help
  "Run the same template as last time again."]
 ["Edit Template" srecode-edit :active t :help
  "Edit a template for this language by name."]
 "---" ("Insert ..." :filter srecode-minor-mode-templates-menu)
 ("Generate ..." :filter srecode-minor-mode-generate-menu) "---"
 ["Customize..." (customize-group "srecode") :active t :help
  "Customize SRecode options"]
 ("Debugging Tools..."
  ["Dump Template MAP" srecode-get-maps :active t :help
   "Calculate (if needed) and display the current template file map."]
  ["Dump Tables" srecode-dump-templates :active t :help
   "Dump the current template table."]
  ["Dump Dictionary" srecode-dictionary-dump :active t :help
   "Calculate and dump a dictionary for point."]
  ["Show Macro Help" srecode-macro-help :active t :help
   "Display the different types of macros available."]))

Documentation

Menu for srecode minor mode.

Source Code

;; Defined in /usr/src/emacs/lisp/cedet/srecode/mode.el.gz
(defvar srecode-menu-bar
  (list
   "SRecoder"
   ["Insert Template"
    srecode-insert
    :active t
    :help "Insert a template by name."]
   ["Insert Template Again"
    srecode-insert-again
    :active t
    :help "Run the same template as last time again."]
     ["Edit Template"
    srecode-edit
    :active t
    :help "Edit a template for this language by name."]
   "---"
   '( "Insert ..." :filter srecode-minor-mode-templates-menu )
   '( "Generate ..." :filter srecode-minor-mode-generate-menu )
   "---"
   ["Customize..."
    (customize-group "srecode")
    :active t
    :help "Customize SRecode options"]
   (list
    "Debugging Tools..."
    ["Dump Template MAP"
     srecode-get-maps
     :active t
     :help "Calculate (if needed) and display the current template file map."]
    ["Dump Tables"
     srecode-dump-templates
     :active t
     :help "Dump the current template table."]
    ["Dump Dictionary"
     srecode-dictionary-dump
     :active t
     :help "Calculate and dump a dictionary for point."]
    ["Show Macro Help"
     srecode-macro-help
     :active t
     :help "Display the different types of macros available."]))
  "Menu for srecode minor mode.")