Skip to content

Commit

Permalink
fix wez
Browse files Browse the repository at this point in the history
  • Loading branch information
mosheavni committed Nov 12, 2024
1 parent c462e45 commit ea5cf97
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions .wezterm.lua
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,6 @@ config.keys = {
-- kill pane
{ key = 'w', mods = 'CMD', action = act.CloseCurrentPane { confirm = true } },

-- end and home keys
{ key = 'ArrowRight', mods = 'CMD', action = act.SendString '\x05' },
{ key = 'ArrowLeft', mods = 'CMD', action = act.SendString '\x01' },

-- Open the configuration file with Cmd+,
{
key = ',',
Expand All @@ -112,7 +108,7 @@ for _, direction in ipairs { 'Left', 'Right', 'Up', 'Down' } do
table.insert(config.keys, {
key = direction .. 'Arrow',
mods = 'OPT',
action = act.SendString { key = letter, mods = 'OPT' },
action = act.SendKey { key = letter, mods = 'OPT' },
})

-- Move to the left/right tab
Expand Down

0 comments on commit ea5cf97

Please sign in to comment.