Skip to content

Commit 60428bc

Browse files
committedOct 10, 2023
fix(autocmds): don't disable statuscolumn for terminals in neovim >= 0.9.4
1 parent 3ee1ef1 commit 60428bc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎lua/astronvim/autocmds.lua

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ autocmd("BufReadPre", {
2626

2727
local terminal_settings_group = augroup("terminal_settings", { clear = true })
2828
-- TODO: drop when dropping support for Neovim v0.9
29-
if vim.fn.has "nvim-0.9.3" == 0 then
29+
if vim.fn.has "nvim-0.9.4" == 0 then
3030
-- HACK: Disable custom statuscolumn for terminals because truncation/wrapping bug
3131
-- https://github.com/neovim/neovim/issues/25472
3232
autocmd("TermOpen", {

0 commit comments

Comments
 (0)
Please sign in to comment.