Interacts badly with variable-pitch-mode and consult
When I do an incremental search in a buffer with variable pitch mode, using Vertico and Consult, then in the presence of selected-window-accent-mode, the buffer loses variable pitch. Try this barebones init:
```
(require 'package)
(package-initialize)
(use-package vertico
:init (vertico-mode))
(use-package consult)
(use-package selected-window-accent-mode
:config (selected-window-accent-mode 1))
```
Then M-x variable-pitch-mode and M-x consult-line, and you'll see the effect.
The variable pitch is gone.
Without the selected-window-accent-mode, the variable pitch is preserved.
0 条评论