Function: global-window-tool-bar-mode
global-window-tool-bar-mode is an autoloaded, interactive and
byte-compiled function defined in window-tool-bar.el.gz.
Signature
(global-window-tool-bar-mode &optional ARG)
Documentation
Toggle Window-Tool-Bar mode in many buffers.
Specifically, Window-Tool-Bar mode is enabled in all buffers where
window-tool-bar--turn-on would do it.
With prefix ARG, enable Global Window-Tool-Bar mode if ARG is positive; otherwise, disable it.
If called from Lisp, toggle the mode if ARG is toggle.
Enable the mode if ARG is nil, omitted, or is a positive number.
Disable the mode if ARG is a negative number.
See window-tool-bar-mode(var)/window-tool-bar-mode(fun) for more information on Window-Tool-Bar
mode.
Probably introduced at or before Emacs version 30.1.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/window-tool-bar.el.gz
;;;###autoload
(define-globalized-minor-mode global-window-tool-bar-mode
window-tool-bar-mode window-tool-bar--turn-on
:group 'window-tool-bar
:package-version '(window-tool-bar . "0.1")
(add-hook 'isearch-mode-hook #'window-tool-bar--turn-on)
(add-hook 'isearch-mode-end-hook #'window-tool-bar--turn-on))