Function: hmouse-vertical-action-drag

hmouse-vertical-action-drag is an interactive and byte-compiled function defined in hui-window.el.

Signature

(hmouse-vertical-action-drag)

Documentation

Handle an Action Key vertical drag within a window.

Adds a window to the right of this one. Beep and print message if the window cannot be split further.

Key Bindings

Source Code

;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-window.el
(defun hmouse-vertical-action-drag ()
  "Handle an Action Key vertical drag within a window.
Adds a window to the right of this one.
Beep and print message if the window cannot be split further."
  (interactive)
  (condition-case ()
      (split-window-horizontally nil)
    (error (beep)
	   (message "(hmouse-vertical-action-drag): Can't split the window further."))))