Iron-E

Results 158 comments of Iron-E

> The last issue I want to ask for help is that every time I try to restore the sessions, the barbar's display area will flash a strange highlight, is...

I'll close this for now, feel free to reopen if the highlighting has problems again!

If I had to guess, I would say you're right in thinking WSL has something to do with it 🤔 Can you reproduce this on Neovim in Windows (e.g. w/...

Closing for now, if it is determined what specific environment leads to this behavior we can discuss whether it is necessary to take any steps for our side

Could [`nvim_buf_set_name`](https://neovim.io/doc/user/api.html#nvim_buf_set_name()) do this? E.g. ```lua vim.keymap.set('n', 'br', function() vim.ui.input( { prompt = 'Rename buffer', default = vim.api.nvim_buf_get_name(0), }, function(input) vim.api.nvim_buf_set_name(0, input) end ) end) ``` Note I just wrote...

> Yes, agree, this would be a great solution. Are you interested in taking a stab at it? I'd be happy to answer any questions

> I'd glad to help, but right now I don't have enough time to dive into all of this, since I only recently jumped into the Neovim and Lua :)...

Can you share a minimal config for this? I don't use DAP, but would be happy to check this out from a shared starting point 🙂

I will investigate this. We intend to support Neovim 0.7.2, but my impression is that this is a backwards compatibility issue, so updating Neovim will likely fix it for now.

This is a [nvim-web-devicons](https://github.com/nvim-tree/nvim-web-devicons/issues/446) issue. I'd suggest pinning the version you use using your plugin manager, or disabling file icons. Closing as while we want barbar to be compatible with...