Function: hmouse-horizontal-action-drag

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

Signature

(hmouse-horizontal-action-drag)

Documentation

Handle an Action Key horizontal drag within a window.

Adds a window below 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-horizontal-action-drag ()
  "Handle an Action Key horizontal drag within a window.
Adds a window below this one.
Beep and print message if the window cannot be split further."
  (interactive)
  (condition-case ()
      (split-window-vertically nil)
    (error (beep)
	   (message "(hmouse-horizontal-action-drag): Can't split the window further."))))