Function: hmouse-vertical-assist-drag
hmouse-vertical-assist-drag is a byte-compiled function defined in
hui-window.el.
Signature
(hmouse-vertical-assist-drag)
Documentation
Handle an Assist Key vertical drag within a window: deletes the current window.
Beep and print message if the window cannot be split further.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-window.el
(defun hmouse-vertical-assist-drag ()
"Handle an Assist Key vertical drag within a window: deletes the current window.
Beep and print message if the window cannot be split further."
(condition-case ()
(delete-window)
(error (beep)
(message "(hmouse-vertical-assist-drag): A single window cannot be deleted."))))