mpv2oboeru

mpv helpers to create flashcards from movies and TV shows
git clone anongit@rnpnr.xyz:mpv2oboeru.git
Log | Files | Refs | Feed | README | LICENSE

Commit: 2b1091b98fd7d35ee1d2319cec020c59b8094b65
Parent: 31a515996d55cf2a7dcf85023a05dbe2b58d144f
Author: Ren Tatsumoto
Date:   Fri, 24 Sep 2021 07:28:03 +0300

update default bindings

Diffstat:
MREADME.md | 2+-
Msubs2srs.lua | 2+-
2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md @@ -268,7 +268,7 @@ Seeking: * `Alt+h` and `Alt+l` - Seek to the previous, or the next subtitle, and pause. * `Ctrl+h` - Seek to the start of the currently visible subtitle. Use it if you missed something. * `Ctrl+Shift+h` - Replay current subtitle line, and pause. -* `Shift-p` - Play until the end of the next subtitle, and pause. Useful for beginners who need +* `Ctrl+Shift+l` - Play until the end of the next subtitle, and pause. Useful for beginners who need to look up words in each and every dialogue line. ### Menu options diff --git a/subs2srs.lua b/subs2srs.lua @@ -1716,7 +1716,7 @@ local main = (function() mp.add_key_binding("Ctrl+h", "mpvacious-sub-rewind", _ { sub_rewind }) mp.add_key_binding("Ctrl+H", "mpvacious-sub-replay", _ { sub_replay }) - mp.add_key_binding("P", "mpvacious-sub-play-up-to-next", _ { sub_play_up_to_next.arm }) + mp.add_key_binding("Ctrl+L", "mpvacious-sub-play-up-to-next", _ { sub_play_up_to_next.arm }) end end)()