From fd6a9cafe8ccaa6fc6c05a9498d994100342bd6a Mon Sep 17 00:00:00 2001 From: James Cherti <60946298+jamescherti@users.noreply.github.com> Date: Sun, 13 Jul 2025 19:12:53 -0400 Subject: [PATCH] Update README.md --- README.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/README.md b/README.md index ff22f46..daf7649 100644 --- a/README.md +++ b/README.md @@ -1446,6 +1446,15 @@ fc-list : family | sed 's/,/\n/g' | sort -u (setq vc-make-backup-files t) (setq kept-old-versions 10) (setq kept-new-versions 10) + +;; When tooltip-mode is enabled, certain UI elements (e.g., help text, +;; mouse-hover hints) will appear as native system tooltips (pop-up windows), +;; rather than as echo area messages. This is useful in graphical Emacs sessions +;; where tooltips can appear near the cursor. +(setq tooltip-hide-delay 20) ; Time in seconds before a tooltip disappears (default: 10) +(setq tooltip-delay 0.4) ; Delay before showing a tooltip after mouse hover (default: 0.7) +(setq tooltip-short-delay 0.08) ; Delay before showing a short tooltip (Default: 0.1) +(tooltip-mode 1) ``` It is also recommended to read the following articles: