Function: hui-select-double-click-hook
hui-select-double-click-hook is an autoloaded and byte-compiled
function defined in hui-select.el.
Signature
(hui-select-double-click-hook EVENT CLICK-COUNT)
Documentation
Select region based on the character syntax where the mouse is double-clicked.
If the double-click EVENT occurs at the same point as the last
double-click, select the next larger syntactic structure. If
hui-select-display-type is non-nil, the type of selection is
displayed in the minibuffer.
Source Code
;; Defined in ~/.emacs.d/elpa/hyperbole-20260414.325/hui-select.el
;;;###autoload
(defun hui-select-double-click-hook (event click-count)
"Select region based on the character syntax where the mouse is double-clicked.
If the double-click EVENT occurs at the same point as the last
double-click, select the next larger syntactic structure. If
`hui-select-display-type' is non-nil, the type of selection is
displayed in the minibuffer."
(cond ((/= click-count 2)
;; Return nil so any other hooks are performed.
nil)
(t (hui-select-thing-with-mouse event))))