Function: reb-lisp-mode
reb-lisp-mode is an interactive and byte-compiled function defined in
re-builder.el.gz.
Signature
(reb-lisp-mode)
Documentation
Major mode for interactively building symbolic Regular Expressions.
In addition to any hooks its parent mode emacs-lisp-mode might have
run, this mode runs the hook reb-lisp-mode-hook, as the final or
penultimate step during initialization.
C-c C-b reb-change-target-buffer
C-c C-c reb-toggle-case
C-c C-e reb-enter-subexp-mode
C-c C-q reb-quit
C-c C-r reb-prev-match
C-c C-s reb-next-match
C-c C-u reb-force-update
C-c C-w reb-copy
C-c TAB reb-change-syntax
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/re-builder.el.gz
(define-derived-mode reb-lisp-mode
emacs-lisp-mode "RE Builder Lisp"
"Major mode for interactively building symbolic Regular Expressions."
;; Pull in packages as needed
(when (eq reb-re-syntax 'rx) ; rx-to-string is autoloaded
(require 'rx)) ; require rx anyway
(reb-mode-common))