From 90212894210a134ba44473ace92cd4ed80e1e286 Mon Sep 17 00:00:00 2001 From: Akianonymus Date: Sun, 21 Aug 2022 14:02:56 +0530 Subject: [PATCH] core: autocmd: Remove 'tabdo wincmd =' on VimResized this should not be in main config, not every one wants their splits to be of equal size on resize, sometimes i want the split to of smaller size whether the screen is resized or not this should be in used custom dir --- lua/core/init.lua | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lua/core/init.lua b/lua/core/init.lua index 3179a63..0e30564 100644 --- a/lua/core/init.lua +++ b/lua/core/init.lua @@ -85,9 +85,3 @@ autocmd("BufDelete", { end end, }) - --- Auto resize panes -autocmd("VimResized", { - pattern = "*", - command = "tabdo wincmd =", -})