Louis DeLosSantos
Louis DeLosSantos
Hmm, maybe this is a bit more optimized? Basically, just try to quit ASAP when you see a window that's not a "component://" window. ``` vim.api.nvim_create_autocmd("WinEnter", { pattern = {...
Odd, works on my end. What happens for you?
Feel free to open a PR for these suggestions. I will review.
I do not run into these issues. ``` nvim --version NVIM v0.10.0-dev+2324-g4948fa42e Build type: RelWithDebInfo LuaJIT 2.1.1692716794 Run "nvim -V1 -v" for more info ``` Can you try to update...
Gh.nvim utilizes vim.api.nvim_echo() extensively to write info to the status line. I havent played with this setting much, but I do remember that the api didnt play well with cmdheight...
Yeah, im not sure how the Neovim core team advises to handle this. From my point of view that new cmdheight just kinda breaks the echo api at times. I...
Hmm. I thought we remove any echo commands that would happen on startup. When gh.nvim starts, it will call out to the ghcli to cache the current user info, but,...
This can be done, but in "litee.nvim". moving the issue there.
Currently, nodes do not keep a reference to their parent. If they did, this would become trivial.
Right now ever tree has a "depth_table", this is a table that looks like this: { 0 = { root } 1 = { child1, child2, child3 } 2 =...