Function: hui-select-get-region-boundaries
hui-select-get-region-boundaries is a byte-compiled function defined
in hui-select.el.
Signature
(hui-select-get-region-boundaries)
Documentation
Return the (START . END) boundaries of region for hui-select-thing.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-select.el
(defun hui-select-get-region-boundaries ()
"Return the (START . END) boundaries of region for `hui-select-thing'."
(with-syntax-table
(if (memq major-mode hui-select-ignore-quoted-sexp-modes)
(syntax-table)
hui-select-syntax-table)
(or (hui-select-boundaries (point))
(when (eq hui-select-previous 'punctuation)
(hui-select-word (point))))))