Function: hmouse-horizontal-assist-drag

hmouse-horizontal-assist-drag is a byte-compiled function defined in hui-window.el.

Signature

(hmouse-horizontal-assist-drag)

Documentation

Handle an Assist Key horizontal drag within a window: delete the current window.

Beep and print message if the sole window which cannot be deleted.

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-window.el
(defun hmouse-horizontal-assist-drag ()
  "Handle an Assist Key horizontal drag within a window: delete the current window.
Beep and print message if the sole window which cannot be deleted."
  (condition-case ()
      (delete-window)
    (error (beep)
	   (message "(hmouse-horizontal-assist-drag): A single window cannot be deleted."))))