You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hey, hope you don't mind usage question. I have a command that does something like this:
:20split | te
With focus enabled my sized split is ignored. I do not want to disable all terminal windows but this one only (it's very short lived). Do you think there is a way of achieving right now and if you could think of some solution if not? Perhaps something like
:FocusIgnore | 20split | te
?
Thanks!
The text was updated successfully, but these errors were encountered:
That would be a great feature to have and something I wanted to add into the new resizer logic I made. It has one issue however I need to address with nvimtree.
I think perhaps a naive way would be to use a buftype. We can't use filetype obviously. Or perhaps capture the bufnr and store it and ignore it. I'll have to use the global table for that to store excluded bufnrs which might get messy.
I've just added the feature to disable on per window basis. However as it uses winnr, it must be set after split creation. Perhaps there is a trick that could set it without it being resized initially 6ff7636
Hey, hope you don't mind usage question. I have a command that does something like this:
With focus enabled my sized split is ignored. I do not want to disable all terminal windows but this one only (it's very short lived). Do you think there is a way of achieving right now and if you could think of some solution if not? Perhaps something like
?
Thanks!
The text was updated successfully, but these errors were encountered: