Function: hui-select-and-copy-thing

hui-select-and-copy-thing is an autoloaded, interactive and byte-compiled function defined in hui-select.el.

Signature

(hui-select-and-copy-thing)

Documentation

Copy the region surrounding the syntactical unit at point to the kill ring.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-select.el
;;;###autoload
(defun hui-select-and-copy-thing ()
  "Copy the region surrounding the syntactical unit at point to the kill ring."
  (interactive)
  (let ((bounds (hui-select-boundaries (point))))
    (when bounds
      (copy-region-as-kill (car bounds) (cdr bounds)))))