summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--DOCS/man/en/mplayer.12
-rw-r--r--etc/input.conf2
-rw-r--r--input/input.c1
3 files changed, 3 insertions, 2 deletions
diff --git a/DOCS/man/en/mplayer.1 b/DOCS/man/en/mplayer.1
index dbe757fe84..56d2dd074a 100644
--- a/DOCS/man/en/mplayer.1
+++ b/DOCS/man/en/mplayer.1
@@ -227,7 +227,7 @@ next/\:previous playtree entry in the parent list
next/\:previous alternative source (ASX playlist only)
.IPs "p / SPACE"
Pause movie (any key unpauses).
-.IPs "s"
+.IPs "."
Step forward.
Pressing once will pause movie, every consecutive press will play one frame
and then go into pause mode again (any other key unpauses).
diff --git a/etc/input.conf b/etc/input.conf
index ebd0552841..092a408fd1 100644
--- a/etc/input.conf
+++ b/etc/input.conf
@@ -19,7 +19,7 @@ q quit
ESC quit
ENTER pt_step 1 1
p pause
-s frame_step
+. frame_step
SPACE pause
HOME pt_up_step 1
END pt_up_step -1
diff --git a/input/input.c b/input/input.c
index 951d03583e..420c2fe2de 100644
--- a/input/input.c
+++ b/input/input.c
@@ -276,6 +276,7 @@ static mp_cmd_bind_t def_cmd_binds[] = {
{ { 'p', 0 }, "pause" },
#endif
{ { ' ', 0 }, "pause" },
+ { { '.', 0 }, "frame_step" },
{ { KEY_HOME, 0 }, "pt_up_step 1" },
{ { KEY_END, 0 }, "pt_up_step -1" },
{ { '>', 0 }, "pt_step 1" },