branch: elpa/eldoc-mouse
commit 50bc7e0ddf3787851ee9695b671395ee8ccc943d
Author: huangfeiyu <[email protected]>
Commit: GitHub <[email protected]>
Bump version from 3.0.3 to 3.0.4
improve configuration instruction.
---
eldoc-mouse.el | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/eldoc-mouse.el b/eldoc-mouse.el
index de33ce293a..c3c9cfbd5e 100644
--- a/eldoc-mouse.el
+++ b/eldoc-mouse.el
@@ -3,7 +3,7 @@
;; Copyright (C) 2025 Huang Feiyu
;; Author: Huang Feiyu <[email protected]>
-;; Version: 3.0.3
+;; Version: 3.0.4
;; Package-Requires: ((emacs "27.1") (posframe "1.4.0") (eglot "1.8"))
;; Keywords: tools, languages, convenience, mouse, hover
;; URL: https://github.com/huangfeiyu/eldoc-mouse
@@ -52,6 +52,10 @@
;; Or if you want to show document only when you press a key, and
;; don't want to enable mouse hover, then:
+;; (use-package eldoc :ensure t)
+;; (use-package eglot :ensure t)
+;; if you use the eglot, elodc package from elpa, the above two lines to
ensure them be loaded before
+;; loading eldoc-mouse to avoid recursive load error.
;; (use-package eldoc-mouse :ensure t)
;; ;; replace <f1> <f1> to a key you like. Displaying document on a popup
when you press a key.
;; (global-set-key (kbd "<f1> <f1>") 'eldoc-mouse-pop-doc-at-cursor)