mirror of
https://github.com/doomemacs/doomemacs
synced 2025-08-03 12:27:26 -05:00
fix: properly disable tooltip-mode
In4a25375
, it seemed that only setting the variables to nil early enough would be sufficient, but this turned out not to be the case. There's no avoiding calling the mode to disable it. Ref:58c0de6841
Amend:4a253757cb
This commit is contained in:
@ -258,8 +258,9 @@ windows, switch to `doom-fallback-buffer'. Otherwise, delegate to original
|
|||||||
;; UX: GUIs are inconsistent across systems, desktop environments, and themes,
|
;; UX: GUIs are inconsistent across systems, desktop environments, and themes,
|
||||||
;; and don't match the look of Emacs. They also impose inconsistent shortcut
|
;; and don't match the look of Emacs. They also impose inconsistent shortcut
|
||||||
;; key paradigms. I'd rather Emacs be responsible for prompting.
|
;; key paradigms. I'd rather Emacs be responsible for prompting.
|
||||||
(setq use-dialog-box nil
|
(setq use-dialog-box nil)
|
||||||
tooltip-mode nil)
|
(when (bound-and-true-p tooltip-mode)
|
||||||
|
(tooltip-mode -1))
|
||||||
|
|
||||||
;; FIX: The native border "consumes" a pixel of the fringe on righter-most
|
;; FIX: The native border "consumes" a pixel of the fringe on righter-most
|
||||||
;; splits, `window-divider' does not. Available since Emacs 25.1.
|
;; splits, `window-divider' does not. Available since Emacs 25.1.
|
||||||
|
Reference in New Issue
Block a user