Function: string-edit-mode

string-edit-mode is a byte-compiled function defined in string-edit.el.gz.

Signature

(string-edit-mode)

Documentation

Mode for editing strings.

In addition to any hooks its parent mode text-mode might have run, this mode runs the hook string-edit-mode-hook, as the final or penultimate step during initialization.

C-c C-c string-edit-done
C-c C-k string-edit-abort

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/string-edit.el.gz
(define-derived-mode string-edit-mode text-mode "String"
  "Mode for editing strings."
  :interactive nil)