-
-
Notifications
You must be signed in to change notification settings - Fork 146
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
Stack trace on each kulala.nvim UI window close #441
Comments
can you show a video? |
and your settings for that plugin |
@siduck Please find the requested information below. Screen.Recording.2025-03-13.at.09.57.54.movI disabled noice.nvim just to eliminate it from the picture. Here is the new stack trace:
Plugin settings:
|
i will test it tomorrow 👍 |
Thank you very much 🙂 |
vim.api.nvim_create_autocmd("BufAdd" , {
callback = function(args)
vim.print{args.buf, vim.bo[args.buf].ft}
end,
})
@mistweaverco do you use eventignore for your plugin? i dont see it at bufdelete event, weird |
@daniel-odrinski Could you please update the |
@glmlm its not related to that {
"mistweaverco/kulala.nvim",
lazy = false,
opts = {},
} and then run
and go to that window, press q |
@glmlm Can confirm that your fix does not fix this issue. |
@siduck @daniel-odrinski It appears that the issue is due to the buffer number |
@daniel-odrinski Could you please test my PR? This might solve the issue. @siduck If you wouldn't mind confirming that this implementation is correct, I would be very grateful. I must admit that I have not read all of the code, so I am not sure if this is appropriate. |
Will do @glmlm thanks :) |
i know, the bufdelete even handler must remove it but idk how it ignores |
dont close yet, i'll come back to this issue in few weeks and merge the code to main branch |
What happens?
kulala.nvim has a UI window which can be closed once done with it. Each time I close it, I get the above stack trace and the tabufline breaks completely.
I am closing the window using the plugin's built-in keymap 'q', so it is not like I am closing this window in any improper way.
Neovim version:
The text was updated successfully, but these errors were encountered: