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
When setting hide_numbers = true and have vim.opt.signcolumn = "yes", open some full screen app, it renders beyond the screen, e.g. lazygit
and if I press tab to switch to next lazygit window, It will looks like:
this happened after I upgrade to nvim 0.10, now I'm setting hide_numbers to false, and add a on_open hook to achieve the same behavior and it work well:
on_open = function()
local ol = vim.opt_local
ol.number = false
ol.signcolumn = "no"
ol.relativenumber = false
end,
Expected Behavior
Work like normal terminal
Steps To Reproduce
Toggleterm with direction horizontal, not sure if other direction have the same issue
Is there an existing issue for this?
Current Behavior
When setting
hide_numbers = true
and havevim.opt.signcolumn = "yes"
, open some full screen app, it renders beyond the screen, e.g. lazygitand if I press tab to switch to next lazygit window, It will looks like:
this happened after I upgrade to nvim 0.10, now I'm setting hide_numbers to false, and add a on_open hook to achieve the same behavior and it work well:
Expected Behavior
Work like normal terminal
Steps To Reproduce
vim.opt.signcolumn = "yes"
Environment
Anything else?
No response
The text was updated successfully, but these errors were encountered: