Function: kotl-mode:mark-whole-buffer

kotl-mode:mark-whole-buffer is an interactive and byte-compiled function defined in kotl-mode.el.

Signature

(kotl-mode:mark-whole-buffer)

Documentation

Put point at first editable character in buffer and mark at last such character.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kotl-mode.el
(defun kotl-mode:mark-whole-buffer ()
  "Put point at first editable character in buffer and mark at last such character."
  (interactive)
  (push-mark (point))
  (kotl-mode:end-of-buffer)
  (push-mark (point) nil t)
  (kotl-mode:beginning-of-buffer))