Variable: edebug-initial-mode-alist

edebug-initial-mode-alist is a variable defined in edebug.el.gz.

Value

((edebug-step-mode . step) (edebug-next-mode . next)
 (edebug-trace-mode . trace) (edebug-Trace-fast-mode . Trace-fast)
 (edebug-go-mode . go) (edebug-continue-mode . continue)
 (edebug-Continue-fast-mode . Continue-fast)
 (edebug-Go-nonstop-mode . Go-nonstop))

Documentation

Association list between commands and the modes they set.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/edebug.el.gz
;;(defun edebug-exit-out ()
;;  "Go until the current function exits."
;;  (interactive)
;;  (edebug-set-mode 'exiting "Exit..."))

(defconst edebug-initial-mode-alist
  '((edebug-step-mode . step)
    (edebug-next-mode . next)
    (edebug-trace-mode . trace)
    (edebug-Trace-fast-mode . Trace-fast)
    (edebug-go-mode . go)
    (edebug-continue-mode . continue)
    (edebug-Continue-fast-mode . Continue-fast)
    (edebug-Go-nonstop-mode . Go-nonstop))
  "Association list between commands and the modes they set.")