Function: View-exit

View-exit is an interactive and byte-compiled function defined in view.el.gz.

Signature

(View-exit)

Documentation

Exit View mode but stay in current buffer.

View in manual

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/view.el.gz
(defun View-exit ()
  "Exit View mode but stay in current buffer."
  (interactive)
  (let ((view-read-only nil)
        (view-no-disable-on-exit nil))
   (view-mode-exit t)))