Revert "fix the window movement keys"

This reverts commit b29c55d250.
This commit is contained in:
Andreas Zweili 2021-11-19 13:35:08 +01:00
parent b29c55d250
commit acd45e9e35
1 changed files with 2 additions and 2 deletions

View File

@ -10,8 +10,8 @@ terminal = guess_terminal()
keys = [
# Switch between windows in current stack pane
Key([mod], "j", lazy.layout.down()),
Key([mod], "k", lazy.layout.up()),
Key([mod], "k", lazy.layout.down()),
Key([mod], "j", lazy.layout.up()),
Key([mod], "h", lazy.layout.left()),
Key([mod], "l", lazy.layout.right()),