Skip to content

Commit

Permalink
chore: direction_keys defaults
Browse files Browse the repository at this point in the history
Co-authored-by: Mat <[email protected]>
  • Loading branch information
zeapoz and mrjones2014 authored Apr 26, 2024
1 parent 5fa9975 commit 5b05e35
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion plugin/init.lua
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,12 @@ local _smart_splits_wezterm_config = {
}

local directions = { 'Left', 'Down', 'Up', 'Right' }
local direction_keys = {}
local direction_keys = {
h = 'Left',
j = 'Down',
k = 'Up',
l = 'Right',
}

local function split_nav(resize_or_move, key)
local modifier = resize_or_move == 'resize' and _smart_splits_wezterm_config.modifiers.resize
Expand Down

0 comments on commit 5b05e35

Please sign in to comment.