Variable: idlwave-shell-mark-breakpoints
idlwave-shell-mark-breakpoints is a customizable variable defined in
idlw-shell.el.gz.
Value
t
Documentation
Non-nil means, mark breakpoints in the source files.
Valid values are:
nil Do not mark breakpoints.
face Highlight line with idlwave-shell-breakpoint-face.
glyph Red dot at the beginning of line. If the display does not
support glyphs, will use face instead.
t Glyph when possible, otherwise face (same effect as glyph).
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/idlw-shell.el.gz
(defcustom idlwave-shell-mark-breakpoints t
"Non-nil means, mark breakpoints in the source files.
Valid values are:
nil Do not mark breakpoints.
`face' Highlight line with `idlwave-shell-breakpoint-face'.
`glyph' Red dot at the beginning of line. If the display does not
support glyphs, will use `face' instead.
t Glyph when possible, otherwise face (same effect as `glyph')."
:group 'idlwave-shell-highlighting-and-faces
:type '(choice
(const :tag "No marking" nil)
(const :tag "Highlight with face" face)
(const :tag "Display glyph (red dot)" glyph)
(const :tag "Glyph or face." t)))