Function: idlwave-shell-save-and-run
idlwave-shell-save-and-run is an autoloaded, interactive and
byte-compiled function defined in idlw-shell.el.gz.
Signature
(idlwave-shell-save-and-run)
Documentation
Save file and run it in IDL.
Runs save-buffer and sends a '.RUN' command for the associated file to IDL.
When called from the shell buffer, re-run the file which was last handled by
one of the save-and-.. commands.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/idlw-shell.el.gz
(defun idlwave-shell-save-and-run ()
"Save file and run it in IDL.
Runs `save-buffer' and sends a '.RUN' command for the associated file to IDL.
When called from the shell buffer, re-run the file which was last handled by
one of the save-and-.. commands."
(interactive)
(idlwave-shell-save-and-action 'run))