Function: dictionary-tooltip-track-mouse

dictionary-tooltip-track-mouse is an interactive and byte-compiled function defined in dictionary.el.gz.

Signature

(dictionary-tooltip-track-mouse EVENT)

Documentation

Hide current tooltip and setup next tooltip in response to mouse movement EVENT.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/net/dictionary.el.gz
(defun dictionary-tooltip-track-mouse (event)
  "Hide current tooltip and setup next tooltip in response to mouse movement EVENT."
  (interactive "e")
  (tooltip-hide)
  (when dictionary-tooltip-mode
    (setq dictionary-tooltip-mouse-event (copy-sequence event))
    (tooltip-start-delayed-tip)))