fix: wrong description of the swipe command (#2197)

This commit is contained in:
marcoleder 2025-01-14 06:47:21 +01:00 committed by GitHub
parent 5c88f26896
commit 098f7396d8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -188,8 +188,8 @@ keymap = [
{ on = "k", run = "arrow -1", desc = "Move cursor up" },
{ on = "j", run = "arrow 1", desc = "Move cursor down" },
{ on = "h", run = "swipe -1", desc = "Swipe to the next file" },
{ on = "l", run = "swipe 1", desc = "Swipe to the previous file" },
{ on = "h", run = "swipe -1", desc = "Swipe to the previous file" },
{ on = "l", run = "swipe 1", desc = "Swipe to the next file" },
{ on = "<Up>", run = "arrow -1", desc = "Move cursor up" },
{ on = "<Down>", run = "arrow 1", desc = "Move cursor down" },