dimmer.el icon indicating copy to clipboard operation
dimmer.el copied to clipboard

How to disable dimmer when using specific minibuffers

Open AnweshGangula opened this issue 1 year ago • 1 comments

I'm using consult in my package and using the consult-line function regularly (an alternative to consult-line is counsel-swiper`) - this an in-buffer mode which helps in searching for content in the buffer.

And I don't want dimmer to dim the document in which I'm trying to use the consult-line because that's the content I'm searching for is in.

How is this possible?

AnweshGangula avatar Jun 25 '24 07:06 AnweshGangula

Not sure it will help you, but customize for dimmer shows

  • Dimmer Buffer Exclusion Regexps:
  • Dimmer Prevent Dimming Predicated

My choices are

^ \*which-key\*$     
^ \*LV\*$            
^ \*transient\*$     
^ \*Minibuf-[0-9]+\*$
^ \*Echo.*\*$        

and

which-key--popup-showing-p
window-minibuffer-p       

Davidbrcz avatar Jan 06 '25 13:01 Davidbrcz