Variable: idlwave-shell-mark-stop-line

idlwave-shell-mark-stop-line is a customizable variable defined in idlw-shell.el.gz.

Value

t

Documentation

Non-nil means, mark the source code line where IDL is currently stopped.

Value decides about the method which is used to mark the line. Valid values are:

nil Do not mark the line
arrow Use the overlay arrow
face Use idlwave-shell-stop-line-face to highlight the line.
t Use what IDLWAVE thinks is best. Will be a face where possible,
          otherwise the overlay arrow.
The overlay-arrow has the disadvantage to hide the first chars of a line. Since many people do not have the main block of IDL programs indented, a face highlighting may be better.

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/idlw-shell.el.gz
(defcustom idlwave-shell-mark-stop-line t
  "Non-nil means, mark the source code line where IDL is currently stopped.
Value decides about the method which is used to mark the line.  Valid values
are:

nil       Do not mark the line
`arrow'   Use the overlay arrow
`face'    Use `idlwave-shell-stop-line-face' to highlight the line.
t         Use what IDLWAVE thinks is best.  Will be a face where possible,
          otherwise the overlay arrow.
The overlay-arrow has the disadvantage to hide the first chars of a line.
Since many people do not have the main block of IDL programs indented,
a face highlighting may be better."
  :group 'idlwave-shell-highlighting-and-faces
  :type '(choice
	  (const :tag "No marking" nil)
	  (const :tag "Use overlay arrow" arrow)
	  (const :tag "Highlight with face" face)
	  (const :tag "Face or arrow." t)))