Function: idlwave-shell-recenter-shell-window

idlwave-shell-recenter-shell-window is an autoloaded, interactive and byte-compiled function defined in idlw-shell.el.gz.

Signature

(idlwave-shell-recenter-shell-window &optional ARG)

Documentation

Run idlwave-shell, but make sure the current window stays selected.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/idlw-shell.el.gz
(defun idlwave-shell-recenter-shell-window (&optional arg)
  "Run `idlwave-shell', but make sure the current window stays selected."
  (interactive "P")
  (let ((window (selected-window)))
    (idlwave-shell arg)
    (select-window window)))