Function: hmouse-insert-region

hmouse-insert-region is a byte-compiled function defined in hui-window.el.

Signature

(hmouse-insert-region)

Documentation

Save a mark, then insert at point the text from hkey-region and indent it.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-window.el
(defun hmouse-insert-region ()
  "Save a mark, then insert at point the text from `hkey-region' and indent it."
  (indent-for-tab-command)
  (push-mark nil t)
  (when (smart-eobp) (insert "\n"))
  (insert hkey-region)
  (indent-region (point) (mark))
  (message "") ;; Clear any indenting message.
  ;; From par-align.el library; need to think about all the
  ;; possibilities before enabling filling of this region.
  ;; (when (fboundp 'fill-region-and-align) (fill-region-and-align (mark) (point)))
  )