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 all buffers.

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.

Window-Tool-Bar mode is enabled in all buffers where window-tool-bar--turn-on would do it.

See window-tool-bar-mode(var)/window-tool-bar-mode(fun) for more information on Window-Tool-Bar mode.

View in manual

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
  (add-hook 'isearch-mode-hook #'window-tool-bar--turn-on)
  (add-hook 'isearch-mode-end-hook #'window-tool-bar--turn-on))