Function: hui-select-and-kill-thing

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

Signature

(hui-select-and-kill-thing)

Documentation

Kill the region surrounding the syntactical unit at point.

Key Bindings

Source Code

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