Function: edt-toggle-capitalization-of-word

edt-toggle-capitalization-of-word is an interactive and byte-compiled function defined in edt.el.gz.

Signature

(edt-toggle-capitalization-of-word)

Documentation

Toggle the capitalization of the current word and move forward to next.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/emulation/edt.el.gz
;;;
;;; TOGGLE CAPITALIZATION OF WORD
;;;

(defun edt-toggle-capitalization-of-word ()
  "Toggle the capitalization of the current word and move forward to next."
  (interactive "*")
  (edt-one-word-forward)
  (edt-one-word-backward)
  (edt-change-case 1)
  (edt-one-word-backward)
  (edt-one-word-forward))