Function: nrepl-log--expand-button-mouse
nrepl-log--expand-button-mouse is an interactive and byte-compiled
function defined in nrepl-client.el.
Signature
(nrepl-log--expand-button-mouse EVENT)
Documentation
Expand the text hidden under overlay button.
EVENT gives the button position on window.
Key Bindings
Source Code
;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/nrepl-client.el
(defun nrepl-log--expand-button-mouse (event)
"Expand the text hidden under overlay button.
EVENT gives the button position on window."
(interactive "e")
(pcase (elt event 1)
(`(,window ,_ ,_ ,_ ,_ ,point . ,_)
(with-selected-window window
(nrepl-log-expand-button (button-at point))))))