Skip to content

Commit

Permalink
config: Fix default workspace right bindings
Browse files Browse the repository at this point in the history
  • Loading branch information
ids1024 committed Aug 31, 2023
1 parent 34eba9e commit 1ea0ffd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config/key_bindings.rs
Original file line number Diff line number Diff line change
Expand Up @@ -195,15 +195,15 @@ pub fn add_default_bindings(
{
WorkspaceLayout::Horizontal => (
[KeySyms::KEY_Left, KeySyms::KEY_h],
[KeySyms::KEY_Right, KeySyms::KEY_j],
[KeySyms::KEY_Right, KeySyms::KEY_l],
[KeySyms::KEY_Up, KeySyms::KEY_k],
[KeySyms::KEY_Down, KeySyms::KEY_j],
),
WorkspaceLayout::Vertical => (
[KeySyms::KEY_Up, KeySyms::KEY_k],
[KeySyms::KEY_Down, KeySyms::KEY_j],
[KeySyms::KEY_Left, KeySyms::KEY_h],
[KeySyms::KEY_Right, KeySyms::KEY_j],
[KeySyms::KEY_Right, KeySyms::KEY_l],
),
};

Expand Down

0 comments on commit 1ea0ffd

Please sign in to comment.