You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an issue where the default emacs notification gets run even with notification(:off) in my ~/.guard.rb.
I'd like to use a custom Emacs script like this one in the wiki but when I allow notifications to be on at all, my mode-line background color changes with every guard run.
When I run bundle exec guard -d, I can see that my elisp file is being run, and I'm seeing what I expect, but the default elisp snippet is also run.
If I set notification(:off) in ~/.guard.rb and run bundle exec guard -d I don't see any notification output in the terminal, but the default elisp snippet is run anyways.
The only way I've been able to get the default elisp snippet to stop running is to use guard with --no-notify or to set GUARD_NOTIFY=false in my terminal, which means I can't get any notifications.
Can you help me only get my custom emacs notification, and turn the default one off?
The text was updated successfully, but these errors were encountered:
I've done my best to debug this issue, but I can't wrap my head around what's going on. I've puts debugged as much of notiffany as I can, trying to figure out why it seems like emacs is being notified twice, but I can't seem to find any traces of it
I have an issue where the default emacs notification gets run even with
notification(:off)
in my~/.guard.rb
.I'd like to use a custom Emacs script like this one in the wiki but when I allow notifications to be on at all, my mode-line background color changes with every guard run.
Here's my setup.
When I run
bundle exec guard -d
, I can see that my elisp file is being run, and I'm seeing what I expect, but the default elisp snippet is also run.If I set
notification(:off)
in~/.guard.rb
and runbundle exec guard -d
I don't see any notification output in the terminal, but the default elisp snippet is run anyways.The only way I've been able to get the default elisp snippet to stop running is to use guard with
--no-notify
or to setGUARD_NOTIFY=false
in my terminal, which means I can't get any notifications.Can you help me only get my custom emacs notification, and turn the default one off?
The text was updated successfully, but these errors were encountered: