Function: cider-locref-help-echo

cider-locref-help-echo is a byte-compiled function defined in cider-repl.el.

Signature

(cider-locref-help-echo WIN BUFFER POS)

Documentation

Function for help-echo property in REPL buffers.

WIN, BUFFER and POS are the window, buffer and point under mouse position.

Source Code

;; Defined in ~/.emacs.d/elpa/cider-20260414.1619/cider-repl.el
(defun cider-locref-help-echo (_win buffer pos)
  "Function for help-echo property in REPL buffers.
WIN, BUFFER and POS are the window, buffer and point under mouse position."
  (with-current-buffer buffer
    (if-let* ((hl (plist-get (cider-locref-at-point pos) :highlight)))
        (move-overlay cider-locref-hoover-overlay (car hl) (cdr hl) buffer)
      (delete-overlay cider-locref-hoover-overlay))
    nil))