Variable: idlwave-shell-show-commands
idlwave-shell-show-commands is a customizable variable defined in
idlw-shell.el.gz.
Value
(run misc breakpoint)
Documentation
A list of command types to show output from in the shell.
Possibilities are run, debug, breakpoint, and misc. Unselected
types are not displayed in the shell. The type everything causes all
the copious shell traffic to be displayed.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/idlw-shell.el.gz
(defcustom idlwave-shell-show-commands
'(run misc breakpoint)
"A list of command types to show output from in the shell.
Possibilities are `run', `debug', `breakpoint', and `misc'. Unselected
types are not displayed in the shell. The type `everything' causes all
the copious shell traffic to be displayed."
:group 'idlwave-shell-command-setup
:type '(choice
(const everything)
(set :tag "Checklist" :greedy t
(const :tag "All .run and .compile commands" run)
(const :tag "All breakpoint commands" breakpoint)
(const :tag "All debug and stepping commands" debug)
(const :tag "Close, window, retall, etc. commands" misc))))