Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

occur with "minibuffer-inactive ... ..." #59

Open
fu123456 opened this issue Sep 30, 2020 · 4 comments
Open

occur with "minibuffer-inactive ... ..." #59

fu123456 opened this issue Sep 30, 2020 · 4 comments

Comments

@fu123456
Copy link

I use the package awesome-tray package https://github.com/manateelazycat/awesome-tray, but I found that I use vr/replace, and my emacs output some undesirable information as follows:
DeepinScreenshot_emacs_20200930104507

So, I want to know how to prohibit this message which is often nosiy. Thanks.

@benma
Copy link
Owner

benma commented Oct 1, 2020

I have never seen anything like it. Please try asking the same at the awesome-tray issue tracker.

@OldhamMade
Copy link

OldhamMade commented Jan 25, 2021

I'm also seeing something similar:

Screen Shot 2021-01-25 at 10 32 42

(the rework-2019-hercules is the name of the current git branch)

This is on Emacs 27, specifically d12frosted/emacs-plus/emacs-plus@27 from homebrew:

Screen Shot 2021-01-25 at 10 33 27

It's the same with Emacs 28 also.

I don't use awesome-tray, so I don't think it's that. I'm also seeing that the initial search doesn't find/highlight anything:

Screen Shot 2021-01-25 at 10 35 53

This feels more like an issue with 27+ rather than any specific package interaction.

@OldhamMade
Copy link

Ah, interesting: there seems to be some odd interaction between this package and feebleline. If I disable that package, everything works fine.

@p1llule
Copy link

p1llule commented Mar 8, 2021

Indeed. both feebleline, awesome-tray, taoline and visual-regexp use extensively the echo area and so can conflict.

My workaround is to put a new hook in visual-regexp PR
Then to add some custom functions to neutralize (deactivating it without reactivating the modeline) the other package while using visual-regexp :

(defun pill--vr/initialize-with-taoline ()
"Disabilitates `tao-line'."
(when taoline-mode
(setq pill/taoline t)
(cancel-timer taoline/timer)
(remove-hook 'focus-in-hook 'taoline-mode-line-proxy-fn)))
(add-hook 'vr/initialize-hook #'pill--vr/initialize-with-taoline)

(defun pill--vr/end-with-taoline ()
"Reabilitates `tao-line'."
(when pill/taoline
(setq taoline/timer
(run-with-timer 0 0.5 'taoline-mode-line-proxy-fn))
(add-hook 'focus-in-hook 'taoline-mode-line-proxy-fn)))
(add-hook 'vr/end-hook #'pill--vr/end-with-taoline)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

4 participants