Variable: sql-display-sqli-buffer-function
sql-display-sqli-buffer-function is a customizable variable defined in
sql.el.gz.
Value
display-buffer
Documentation
Function to be called to display a SQLi buffer after sql-send-*.
When set to a function, it will be called to display the buffer.
When set to t, the default function pop-to-buffer will be
called. If not set, no attempt will be made to display the
buffer.
This variable was added, or its default value changed, in Emacs 27.1.
Aliases
sql-pop-to-buffer-after-send-region
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/sql.el.gz
(defcustom sql-display-sqli-buffer-function #'display-buffer
"Function to be called to display a SQLi buffer after `sql-send-*'.
When set to a function, it will be called to display the buffer.
When set to t, the default function `pop-to-buffer' will be
called. If not set, no attempt will be made to display the
buffer."
:type '(choice (const :tag "Default" t)
(const :tag "No display" nil)
(function :tag "Display Buffer function"))
:version "27.1")