From 8e24950af9ccd5ec24a37e6bef53a0bd728142d4 Mon Sep 17 00:00:00 2001 From: Evie Litherland-Smith Date: Thu, 1 Jun 2023 15:09:04 +0100 Subject: [PATCH] Fix wezterm navigation keys --- home/gui/config/wezterm/keys.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/home/gui/config/wezterm/keys.lua b/home/gui/config/wezterm/keys.lua index fc3cd8cd..ccd007c7 100644 --- a/home/gui/config/wezterm/keys.lua +++ b/home/gui/config/wezterm/keys.lua @@ -2,10 +2,10 @@ local wezterm = require "wezterm" local act = wezterm.action return { - { key = "h", mods = "ALT", action = act.EmitEvent "ActivatePaneDirection-left" }, - { key = "j", mods = "ALT", action = act.EmitEvent "ActivatePaneDirection-down" }, - { key = "k", mods = "ALT", action = act.EmitEvent "ActivatePaneDirection-up" }, - { key = "l", mods = "ALT", action = act.EmitEvent "ActivatePaneDirection-right" }, + { key = "h", mods = "ALT", action = act.ActivatePaneDirection "Left" }, + { key = "j", mods = "ALT", action = act.ActivatePaneDirection "Down" }, + { key = "k", mods = "ALT", action = act.ActivatePaneDirection "Up" }, + { key = "l", mods = "ALT", action = act.ActivatePaneDirection "Right" }, { key = "1", mods = "ALT", action = act.ActivateTab(0) }, { key = "2", mods = "ALT", action = act.ActivateTab(1) }, { key = "3", mods = "ALT", action = act.ActivateTab(2) },