From 532069b5a5378ec775803a136865a5ef6120c2b4 Mon Sep 17 00:00:00 2001 From: Jerry Ying <59452354+ying234@users.noreply.github.com> Date: Sat, 24 Aug 2024 14:58:26 +0000 Subject: [PATCH] Fix the Wezterm example error: invalid KeyCode string Left, expected phys:CODE physical keycode string, got: phys:Left. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 293c72f..38002ed 100644 --- a/README.md +++ b/README.md @@ -379,9 +379,9 @@ smart_splits.apply_to_config(config, { direction_keys = { 'h', 'j', 'k', 'l' }, -- if you want to use separate direction keys for move vs. resize, you -- can also do this: - direction keys = { + direction_keys = { move = { 'h', 'j', 'k', 'l' }, - resize = { 'Left', 'Down', 'Up', 'Right' }, + resize = { 'LeftArrow', 'DownArrow', 'UpArrow', 'RightArrow' }, }, -- modifier keys to combine with direction_keys modifiers = {