summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorTimotej Lazar <timotej.lazar@araneo.si>2016-07-14 20:04:59 +0200
committerwm4 <wm4@nowhere>2016-07-14 22:37:42 +0200
commit91a1b17104e6417cb2c77c838c85fabcff9e7d11 (patch)
treed6aa52db710cc28d246b94c66b18c6c9172fcd98 /etc
parent6e45e1de7778fab39e478f4e05008eb96bbec523 (diff)
downloadmpv-91a1b17104e6417cb2c77c838c85fabcff9e7d11.tar.bz2
mpv-91a1b17104e6417cb2c77c838c85fabcff9e7d11.tar.xz
Use - as command-name separator everywhere
Old-style commands using _ as separator (e.g. show_progress) were still used in some places, including documentation and configuration files. This commit updates all such instances to the new style (show-progress) so that commands are easier to find in the manual.
Diffstat (limited to 'etc')
-rw-r--r--etc/input.conf2
-rw-r--r--etc/mplayer-input.conf16
-rw-r--r--etc/restore-old-bindings.conf4
3 files changed, 11 insertions, 11 deletions
diff --git a/etc/input.conf b/etc/input.conf
index 0c29a47eb1..59ee2886f0 100644
--- a/etc/input.conf
+++ b/etc/input.conf
@@ -79,7 +79,7 @@
#> playlist-next # skip to next file
#ENTER playlist-next # skip to next file
#< playlist-prev # skip to previous file
-#O no-osd cycle_values osd-level 3 1 # cycle through OSD mode
+#O no-osd cycle-values osd-level 3 1 # cycle through OSD mode
#o show-progress
#P show-progress
#I show-text "${filename}" # display filename in osd
diff --git a/etc/mplayer-input.conf b/etc/mplayer-input.conf
index c88177733e..742913c0fe 100644
--- a/etc/mplayer-input.conf
+++ b/etc/mplayer-input.conf
@@ -24,19 +24,19 @@ SHARP cycle audio # switch audio streams
BS set speed 1.0 # reset speed to normal
q quit
ESC quit
-ENTER playlist_next force # skip to next file
+ENTER playlist-next force # skip to next file
p cycle pause
-. frame_step # advance one frame and pause
+. frame-step # advance one frame and pause
SPACE cycle pause
HOME set playlist-pos 0 # not the same as MPlayer
#END pt_up_step -1
-> playlist_next # skip to next file
-< playlist_prev # previous
+> playlist-next # skip to next file
+< playlist-prev # previous
#INS alt_src_step 1
#DEL alt_src_step -1
o osd
-I show_text "${filename}" # display filename in osd
-P show_progress
+I show-text "${filename}" # display filename in osd
+P show-progress
z add sub-delay -0.1 # subtract 100 ms delay from subs
x add sub-delay +0.1 # add
9 add volume -1
@@ -57,8 +57,8 @@ d cycle framedrop
D cycle deinterlace # toggle deinterlacer (auto-inserted filter)
r add sub-pos -1 # move subtitles up
t add sub-pos +1 # down
-#? sub_step +1 # immediately display next subtitle
-#? sub_step -1 # previous
+#? sub-step +1 # immediately display next subtitle
+#? sub-step -1 # previous
#? add sub-scale +0.1 # increase subtitle font size
#? add sub-scale -0.1 # decrease subtitle font size
f cycle fullscreen
diff --git a/etc/restore-old-bindings.conf b/etc/restore-old-bindings.conf
index e8499b5ec1..aab0c9f4bc 100644
--- a/etc/restore-old-bindings.conf
+++ b/etc/restore-old-bindings.conf
@@ -17,7 +17,7 @@ d cycle framedrop
# changed in mpv 0.7.0
-ENTER playlist_next force
+ENTER playlist-next force
# changed in mpv 0.6.0
@@ -38,4 +38,4 @@ TAB cycle program
A cycle angle
U stop
o osd
-I show_text "${filename}"
+I show-text "${filename}"