We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Feature Request: Add config options to set notification levels for different events.
Could be set in config, maybe something like this:
notification_levels = { test = { not_found = "warn", error = "error", success = "info", }, watcher = { start = "warn", stop = "info", not_found = "error", }, lsp = { no_client = "warn", }, }
and then lib.notify could use the config setting:
lib.notify
lib.notify(("Stopping watch for %s"):format(position_id), config.notification_levels.watcher.stop)
Happy to help with PR.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Feature Request: Add config options to set notification levels for different events.
Could be set in config, maybe something like this:
and then
lib.notify
could use the config setting:Happy to help with PR.
The text was updated successfully, but these errors were encountered: