César Enrique Ramírez
César Enrique Ramírez
I came here looking for this. I can help also with the feature if needed
I'm sorry, I haven't been able to take the time to do it El mié., 27 mar. 2019 10:31, Jiri Valnoha escribió: > Hello, > > can I ask you...
Ok, I'll try to be more precise: I am using `sessionoptions` without `tabpages` and the behaviour I want from this plugin is: - Keep track of the buffers associated to...
I noticed that this doesn't respect `sessionoptions` because I don't have `tabpages` included and `RestoreSession` works as expected, loading without affecting the other tabs, but `SearchSession` removes all other buffers...
[trouble.nvim](https://github.com/folke/trouble.nvim) already implements a file preview in the last accessed window. maybe it can be useful to check it out as inspiration
Hi @baroxFPTU for open the terminal in a split, you can add a mapping like `nnoremap :split | ToggleTerminal` but you'll have to keep track of the split and close...
Sorry, I updated the link to a public repository 😅 [here](https://github.com/caenrique/nvim-config) is the link as well
I think it's related with [this component](https://github.com/caenrique/nvim-config/blob/master/lua/caenrique/feline/components.lua#L117) (coming from [nvim-metals](https://github.com/scalameta/nvim-metals/blob/main/doc/metals.txt#L105)) which is text coming from a global variable and is has variable lenght. My guess is that when this texts...
I managed to isolate a generated statusline string that make `vim.api.nvim_eval_statusline` fail: ``` "%#StatusComponent_CDD6F4_313244_NONE#Compiling subscriptions 5s (0%)%#StatusComponent_NONE_313244_NONE# " ``` posibly because of the `%` sign?
Yes! one example is: `Compiling subscriptions 5s (0%)`. I'm using feline.nvim for the statusline and I also created [an issue](https://github.com/feline-nvim/feline.nvim/issues/303) there before I found the exact problem. Replacing `%` with...