Function: sh-show-shell

sh-show-shell is an interactive and byte-compiled function defined in sh-script.el.gz.

Signature

(sh-show-shell)

Documentation

Pop the shell interaction buffer.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/sh-script.el.gz
(defun sh-show-shell ()
  "Pop the shell interaction buffer."
  (interactive)
  (with-suppressed-warnings ((obsolete display-comint-buffer-action))
    (pop-to-buffer (process-buffer (sh-shell-process t)) display-comint-buffer-action)))