Variable: python-pdbtrack-continue-command

python-pdbtrack-continue-command is a customizable variable defined in python.el.gz.

Value

("c" "cont" "continue")

Documentation

Pdb continue command aliases.

After one of these commands is sent to pdb, the pdbtracking session is considered over.

This command is remembered by pdbtracking. If the next command sent to pdb is the empty string, it is treated as continue if the previous command was continue. This behavior slightly differentiates the continue command from the exit command listed in python-pdbtrack-exit-command.

See python-pdbtrack-activate for pdbtracking session overview.

This variable was added, or its default value changed, in Emacs 27.1.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/python.el.gz
(defcustom python-pdbtrack-continue-command '("c" "cont" "continue")
  "Pdb `continue' command aliases.
After one of these commands is sent to pdb, the pdbtracking session is
considered over.

This command is remembered by pdbtracking.  If the next command sent to pdb
is the empty string, it is treated as `continue' if the previous command
was `continue'.  This behavior slightly differentiates the `continue' command
from the `exit' command listed in `python-pdbtrack-exit-command'.

See `python-pdbtrack-activate' for pdbtracking session overview."
  :type '(repeat string)
  :version "27.1")