Iron-E
Iron-E
Potentially related: #550
Not a clean one 😅 I'll try to take a look at this soon.
Took a quick look at this, just reporting my findings so far (side note: I actually use `nix` myself, so I was able to drop your config right into mine...
I set up some debug logging to inspect this further, and captured the following state [here](https://github.com/romgrk/barbar.nvim/blob/master/lua/barbar/api.lua#L232): ```log { current_animation = { current = 0, duration = 150, final = 1,...
Small function to put logs in an internal buffer while debugging, since this is animation based: ```lua local buf = vim.api.nvim_create_buf(true, false) vim.api.nvim_buf_set_name(buf, 'logs') vim.notify = function(msg, level) local replacement...
I'm not having this either the last few times I sat down to debug it 🤔 If it's gone for you too now, I think we should close this for...
As you've noticed `barbar.nvim`'s buffer order does not reflect that of the internal Vim buffer list. This is so that we can offer features (e.g. reordering buffers) & customization (e.g....
We just had [another related issue](https://github.com/romgrk/barbar.nvim/issues/594#issuecomment-2226226985) come up which gave me an idea about how we could likely solve this: if you change the snippet from that issue comment to...
Closing for now as `BufferOrderByBufferNumber` should achieve the desired behavior. If not, feel free to reopen!
Does this happen if you `:edit` a file? If so, filing an issue with neo-tree will likely be more help :)