desktop-notify.nvim icon indicating copy to clipboard operation
desktop-notify.nvim copied to clipboard

Show desktop notifications for vim.notify calls

Results 9 desktop-notify.nvim issues
Sort by recently updated
recently updated
newest added

does this support windows ?

From `notify-send --help`: ``` Usage: notify-send [OPTION…] [BODY] - create a notification Help Options: -?, --help Show help options Application Options: -u, --urgency=LEVEL Specifies the urgency level (low, normal, critical)....

If the terminal is kitty you can simply use: ```lua vim.api.nvim_chan_send(vim.v.stderr, '\027]99;;Hello world\027\\') ``` and that works even if nvim is being used via ssh.

for example, when we try to exit modified file without saving, we get error at bottom, is there any way to display it through desktop notification ?

Relevant code: https://github.com/simrat39/desktop-notify.nvim/blob/5519667934520468e2a9da3979055091b46dfeec/plugin/desktop_notify.vim#L1 Error: ``` E174: Command already exists: add ! to replace it: Notifications :lua require('desktop-notify').open_history() ``` This occurs when using something like rcarriga/nvim-notify, which defines a command with...

Every now and then when I try to view the notification history I run across this: ``` E5108: Error executing lua: .../packer/start/desktop-notify.nvim/lua/desktop-notify.lua:51: String cannot contain newlines ``` For example, I...

Hey! Thanks a lot for the plugin! I've wanted to configure the highlight groups because they're not very legible on my system. This PR makes the highlight groups defined by...