Skip to content

Commit 2c5a2de

Browse files
committed
input.conf: duplicate some keybind to keypad siblings
They still can be remapped individually by users, but let's duplicate them by default. Same as 8c6ad1d. Fixes: mpv-player#15993
1 parent 630a036 commit 2c5a2de

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

etc/input.conf

+12
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,13 @@
4646

4747
## Seek units are in seconds, but note that these are limited by keyframes
4848
#RIGHT seek 5 # seek 5 seconds forward
49+
#KP_RIGHT seek 5 # seek 5 seconds forward
4950
#LEFT seek -5 # seek 5 seconds backward
51+
#KP_LEFT seek -5 # seek 5 seconds backward
5052
#UP seek 60 # seek 1 minute forward
53+
#KP_UP seek 60 # seek 1 minute forward
5154
#DOWN seek -60 # seek 1 minute backward
55+
#KP_DOWN seek -60 # seek 1 minute backward
5256
# Do smaller, always exact (non-keyframe-limited), seeks with shift.
5357
# Don't show them on the OSD (no-osd).
5458
#Shift+RIGHT no-osd seek 1 exact # seek exactly 1 second forward
@@ -74,9 +78,13 @@
7478
#Alt+BS set video-zoom 0; no-osd set panscan 0; no-osd set video-pan-x 0; no-osd set video-pan-y 0; no-osd set video-align-x 0; no-osd set video-align-y 0 # reset zoom and pan settings
7579
#HOME seek 0 absolute # seek to the start
7680
#PGUP add chapter 1 # seek to the next chapter
81+
#KP_PGUP add chapter 1 # seek to the next chapter
7782
#PGDWN add chapter -1 # seek to the previous chapter
83+
#KP_PGDWN add chapter -1 # seek to the previous chapter
7884
#Shift+PGUP seek 600 # seek 10 minutes forward
85+
#Shift+KP_PGUP seek 600 # seek 10 minutes forward
7986
#Shift+PGDWN seek -600 # seek 10 minutes backward
87+
#Shift+KP_PGDWN seek -600 # seek 10 minutes backward
8088
#[ multiply speed 1/1.1 # decrease the playback speed
8189
#] multiply speed 1.1 # increase the playback speed
8290
#{ multiply speed 0.5 # halve the playback speed
@@ -95,9 +103,12 @@
95103
#SPACE cycle pause # toggle pause/playback mode
96104
#> playlist-next # skip to the next file
97105
#ENTER playlist-next # skip to the next file
106+
#KP_ENTER playlist-next # skip to the next file
98107
#< playlist-prev # skip to the previous file
99108
#Shift+HOME no-osd set playlist-pos 0 # skip to the first file
109+
#Shift+KP_HOME no-osd set playlist-pos 0 # skip to the first file
100110
#Shift+END no-osd set playlist-pos-1 ${playlist-count} # skip to the last file
111+
#Shift+KP_END no-osd set playlist-pos-1 ${playlist-count} # skip to the last file
101112
#O no-osd cycle-values osd-level 3 1 # toggle displaying the OSD on user interaction or always
102113
#o show-progress # show playback progress
103114
#P show-progress # show playback progress
@@ -178,6 +189,7 @@
178189
#ctrl+c quit 4
179190
#Ctrl+v loadfile ${clipboard/text} append-play; show-text '+ ${clipboard/text}' # append the copied path
180191
#DEL script-binding osc/visibility # cycle OSC visibility between never, auto (mouse-move) and always
192+
#KP_DEL script-binding osc/visibility # cycle OSC visibility between never, auto (mouse-move) and always
181193
#ctrl+h cycle-values hwdec "no" "auto" # toggle hardware decoding
182194
#F8 show-text ${playlist} # show the playlist
183195
#F9 show-text ${track-list} # show the list of video, audio and sub tracks

0 commit comments

Comments
 (0)