Variable: reb-mode-menu

reb-mode-menu is a variable defined in re-builder.el.gz.

Value


Documentation

Menu for the RE Builder.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/re-builder.el.gz
(easy-menu-define reb-mode-menu reb-mode-map
  "Menu for the RE Builder."
  '("Re-Builder"
    ["Copy current RE" reb-copy
     :help "Copy current RE into the kill ring for later insertion"]
    "---"
    ["Go to previous match" reb-prev-match
     :help "Go to previous match in the RE Builder target window"]
    ["Go to next match" reb-next-match
     :help "Go to next match in the RE Builder target window"]
    ["Force update" reb-force-update
     :help "Force an update in the RE Builder target window without a match limit"]
    ["Enter subexpression mode" reb-enter-subexp-mode
     :help "Enter the subexpression mode in the RE Builder"]
    "---"
    ["Change syntax..." reb-change-syntax
     :help "Change the syntax used by the RE Builder"]
    ["Change target buffer..." reb-change-target-buffer
     :help "Change the target buffer and display it in the target window"]
    ["Case sensitive" reb-toggle-case
     :style toggle
     :selected (with-current-buffer reb-target-buffer
                 (null case-fold-search))
     :help "Toggle case sensitivity of searches for RE Builder target buffer"]
    "---"
    ["Quit" reb-quit
     :help "Quit the RE Builder mode"]))