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