Function: kimport:insert-buffer

kimport:insert-buffer is an interactive and byte-compiled function defined in kimport.el.

Signature

(kimport:insert-buffer BUFFER)

Documentation

Insert after point the contents of BUFFER.

Puts mark after the inserted text. BUFFER may be a buffer or a buffer name.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/kotl/kimport.el
(defun kimport:insert-buffer (buffer)
  "Insert after point the contents of BUFFER.
Puts mark after the inserted text.
BUFFER may be a buffer or a buffer name."
  (interactive "*bInsert buffer: ")
  (insert-buffer-substring buffer)
  (kotl-mode:add-indent-to-region))