diff options
| author | Craig Jennings <c@cjennings.net> | 2026-07-24 01:02:54 -0500 |
|---|---|---|
| committer | Craig Jennings <c@cjennings.net> | 2026-07-24 01:02:54 -0500 |
| commit | 7e5aa31731a6d6446055729fb7597d549ff637f4 (patch) | |
| tree | 4a3deb3a97d8ecbe3023e7e84d6e8151937ebfc6 /modules/auto-dim-config.el | |
| parent | 32017dc068d7579e789c5e753ae35f6f10c3d5b3 (diff) | |
| download | dotemacs-7e5aa31731a6d6446055729fb7597d549ff637f4.tar.gz dotemacs-7e5aa31731a6d6446055729fb7597d549ff637f4.zip | |
fix(auto-dim): stop the minibuffer from re-dimming the window you left
- Opening the minibuffer dimmed whatever window you had just left.
- Dimming follows selection, and the minibuffer takes selection.
- auto-dim-other-buffers-dim-on-switch-to-minibuffer sat at its package default of t.
- Set it to nil, so minibuffer entry leaves the dim state alone.
Diffstat (limited to 'modules/auto-dim-config.el')
| -rw-r--r-- | modules/auto-dim-config.el | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/modules/auto-dim-config.el b/modules/auto-dim-config.el index faa4101c..980d301f 100644 --- a/modules/auto-dim-config.el +++ b/modules/auto-dim-config.el @@ -58,7 +58,11 @@ focus cue on a split-displayed dashboard, accepted as a fair trade." ;; Emacs loses focus -- on Hyprland focus moves to other apps constantly, ;; and the ai-term agents live in their own windows. (auto-dim-other-buffers-dim-on-focus-out nil) - (auto-dim-other-buffers-dim-on-switch-to-minibuffer t) + ;; Entering the minibuffer leaves dimming exactly as it was -- a dim window + ;; stays dim, a lit one stays lit. With this at t, the window being worked + ;; in went dark on every minibuffer prompt, since selecting the minibuffer + ;; deselects it and the dim follows selection. + (auto-dim-other-buffers-dim-on-switch-to-minibuffer nil) :config ;; Remap these faces to auto-dim-other-buffers (pure-black background + ;; faded gray foreground, defined in the theme) in non-selected windows. |
