From bb1a4df9fad7ce9bf555d9fffd847f03b1d1ada0 Mon Sep 17 00:00:00 2001 From: newbieQQ Date: Thu, 11 Jun 2026 16:49:10 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20terminal=20size=2030%=20=E2=86=92=2040?= =?UTF-8?q?=20cols?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- lua/keymap.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/keymap.lua b/lua/keymap.lua index 0cfca1a..201c811 100644 --- a/lua/keymap.lua +++ b/lua/keymap.lua @@ -46,7 +46,7 @@ do -- 横屏→右侧(垂直分屏);竖屏→下方(水平分屏) direction = tall and 'horizontal' or 'vertical', cmd = cmd, - size = tall and 10 or math.floor(ui.width * 0.3), + size = tall and 10 or 40, }) term:toggle() end