Next: Commands Sent to the Shell, Previous: Starting the Shell, Up: The IDLWAVE Shell [Contents][Index]
The IDLWAVE shell works in the same fashion as other shell modes in Emacs. It provides command history, command line editing and job control. The UP and DOWN arrows cycle through the input history just like in an X terminal3. The history is preserved between emacs and IDL sessions. Here is a list of commonly used commands:
In addition to these standard comint commands,
idlwave-shell-mode provides many of the same commands which
simplify writing IDL code available in IDLWAVE buffers. This includes
abbreviations, online help, and completion. See Routine Info and
Online Help and Completion for more information on these
commands.
idlwave-shell-complete).idlwave-routine-info)idlwave-routine-info-from-idlhelp)idlwave-update-routine-info)idlwave-find-module)idlwave-find-module-this-file).idlwave-resolve)t) ¶ Non-nil means UP and DOWN arrows move through command
history like xterm.
Alist of special settings for the comint variables in the IDLWAVE Shell.
The characters allowed in file names, as a string. Used for file name completion.
Size of IDL graphics windows popped up by special IDLWAVE command.
IDLWAVE works in line input mode: You compose a full command line, using
all the power Emacs gives you to do this. When you press RET, the
whole line is sent to IDL. Sometimes it is necessary to send single
characters (without a newline), for example when an IDL program is
waiting for single character input with the GET_KBRD function.
You can send a single character to IDL with the command C-c C-x
(idlwave-shell-send-char). When you press C-c C-y
(idlwave-shell-char-mode-loop), IDLWAVE runs a blocking loop
which accepts characters and immediately sends them to IDL. The loop
can be exited with C-g. It terminates also automatically when the
current IDL command is finished. Check the documentation of the two
variables described below for a way to make IDL programs trigger
automatic switches of the input mode.
nil) ¶ Non-nil means IDLWAVE should check for input mode spells in
output.
The three regular expressions which match the magic spells for input modes.
This is different from
normal Emacs/Comint behavior, but more like an xterm. If you prefer the
default comint functionality, check the variable
idlwave-shell-arrows-do-history.
Next: Commands Sent to the Shell, Previous: Starting the Shell, Up: The IDLWAVE Shell [Contents][Index]