Function: global-superword-mode
global-superword-mode is an autoloaded, interactive and byte-compiled
function defined in subword.el.gz.
Signature
(global-superword-mode &optional ARG)
Documentation
Toggle Superword mode in many buffers.
Specifically, Superword mode is enabled in all buffers where (lambda
nil (superword-mode 1)) would do it.
With prefix ARG, enable Global Superword 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 superword-mode(var)/superword-mode(fun) for more information on Superword mode.
Key Bindings
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/subword.el.gz
;;;###autoload
(define-globalized-minor-mode global-superword-mode superword-mode
(lambda () (superword-mode 1))
:group 'convenience)