From ed4e33e3c62ad5816fa9ffb3cc49004ee28662a3 Mon Sep 17 00:00:00 2001 From: Price Hiller Date: Mon, 17 Apr 2023 07:55:43 -0500 Subject: [PATCH] refactor(wezterm): make resize keybind apply to font only --- dots/.config/wezterm/config/keybinds.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dots/.config/wezterm/config/keybinds.lua b/dots/.config/wezterm/config/keybinds.lua index f9254f32..ed0f4fdb 100644 --- a/dots/.config/wezterm/config/keybinds.lua +++ b/dots/.config/wezterm/config/keybinds.lua @@ -56,7 +56,7 @@ return { }, { key = "=", mods = "CTRL", action = "IncreaseFontSize" }, { key = "-", mods = "CTRL", action = "DecreaseFontSize" }, - { key = "0", mods = "CTRL", action = "ResetFontAndWindowSize" }, + { key = "0", mods = "CTRL", action = "ResetFontSize" }, -- NOTE: Leader dependent binds { key = "h", mods = "LEADER", action = wezterm.action({ EmitEvent = "trigger-nvim-with-scrollback" }) },