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

Never show long-running notifications for Neovim #29

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion long-running-notifications.elv
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ var notifier = auto

var notifications-to-try = [ macos libnotify text ]

var never-notify = [ vi vim emacs nano less more bat ]
var never-notify = [ vi vim nvim emacs nano less more bat ]
var always-notify = [ ]

var notification-fns = [
Expand Down
2 changes: 1 addition & 1 deletion long-running-notifications.org
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ The default notification threshold is 10 seconds, so when the command finishes,
You can specify a list commands for which you do not want notifications in the =$long-running-notifications:never-notify= variable, and a list of commands that should always be notified (regardless of how long they took) in =always-notify=. Their default values are:

#+begin_src elvish
never-notify = [ vi vim emacs nano less more bat ]
never-notify = [ vi vim nvim emacs nano less more bat ]
always-notify = [ ]
#+end_src

Expand Down