rcarriga / nvim-notify

A fancy, configurable, notification manager for NeoVim
MIT License
2.91k stars 74 forks source link

Saving same buffer multiple times gives err #213

Closed niksingh710 closed 12 months ago

niksingh710 commented 12 months ago

image

rcarriga commented 12 months ago

nvim-notify doesn't send notifications, something else does. You can figure out what with something like this

local notify = require("notify")

vim.notify = function(...)
  print(debug.traceback())
  notify(...)
end
niksingh710 commented 12 months ago

nvim-notify doesn't send notifications, something else does. You can figure out what with something like this

local notify = require("notify")

vim.notify = function(...)
  print(debug.traceback())
  notify(...)
end

can you please elaborate a bit as i am unable to go to the root of the problem. and yeah it is not only happening on nvim-notify but if i have nay kind of notification plugin. like nui or something