Variable: async-shell-command-display-buffer
async-shell-command-display-buffer is a customizable variable defined
in simple.el.gz.
Value
t
Documentation
Whether to display the command buffer immediately.
If t, display the buffer immediately; if nil, wait until there is output.
This variable was added, or its default value changed, in Emacs 26.1.
Probably introduced at or before Emacs version 26.1.
Source Code
;; Defined in /usr/src/emacs/lisp/simple.el.gz
(defcustom async-shell-command-display-buffer t
"Whether to display the command buffer immediately.
If t, display the buffer immediately; if nil, wait until there
is output."
:type '(choice (const :tag "Display buffer immediately"
t)
(const :tag "Display buffer on output"
nil))
:group 'shell
:version "26.1")