Skip to content

Commit

Permalink
Merge pull request #233 from ying234/master
Browse files Browse the repository at this point in the history
fix(docs): Fix the Wezterm plugin example keycodes
  • Loading branch information
mrjones2014 authored Aug 24, 2024
2 parents b518cfb + 532069b commit c6ec2ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 = {
Expand Down

0 comments on commit c6ec2ba

Please sign in to comment.