Function: global-hi-lock-mode

global-hi-lock-mode is an autoloaded, interactive and byte-compiled function defined in hi-lock.el.gz.

Signature

(global-hi-lock-mode &optional ARG)

Documentation

Toggle Hi-Lock mode in many buffers.

Specifically, Hi-Lock mode is enabled in all buffers where turn-on-hi-lock-if-enabled would do it.

With prefix ARG, enable Global Hi-Lock 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 hi-lock-mode(var)/hi-lock-mode(fun) for more information on Hi-Lock mode.

Probably introduced at or before Emacs version 22.1.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/hi-lock.el.gz
;;;###autoload
(define-globalized-minor-mode global-hi-lock-mode
  hi-lock-mode turn-on-hi-lock-if-enabled
  :group 'hi-lock)