about summary refs log tree commit homepage
path: root/bin/dtas-console
diff options
context:
space:
mode:
authorEric Wong <normalperson@yhbt.net>2013-08-25 07:22:43 +0000
committerEric Wong <normalperson@yhbt.net>2013-08-25 07:22:43 +0000
commit6841d7273d39d73ddd11a2ab7d8a0319aae2fc7d (patch)
tree74c2f052b3b67a3643fcec66002bdb7b6b587f0c /bin/dtas-console
parent638d7faafa7d8553ed70783cf01beb29c293a286 (diff)
downloaddtas-6841d7273d39d73ddd11a2ab7d8a0319aae2fc7d.tar.gz
This also matches the KEY_UP and KEY_DOWN behavior, and probably(?)
makes more sense.
Diffstat (limited to 'bin/dtas-console')
-rwxr-xr-xbin/dtas-console4
1 files changed, 2 insertions, 2 deletions
diff --git a/bin/dtas-console b/bin/dtas-console
index b6c01c2..0575d1a 100755
--- a/bin/dtas-console
+++ b/bin/dtas-console
@@ -156,8 +156,8 @@ begin
       when $stdin
         # keybindings taken from mplayer / vi
         case key = Curses.getch
-        when "j" then c.req_ok("seek +5")
-        when "k" then c.req_ok("seek -5")
+        when "j" then c.req_ok("seek -5")
+        when "k" then c.req_ok("seek +5")
         when Curses::KEY_DOWN then c.req_ok("seek -60")
         when Curses::KEY_UP then c.req_ok("seek +60")
         when Curses::KEY_LEFT then c.req_ok("seek -10")