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: 734f8c7ba2588d5d9a2e26d66b897e8fdca84e28
Parent: ba93458d0271d992b5cf374878e9884c14242d4d
Author: Ren Tatsumoto
Date:   Sun, 20 Sep 2020 04:23:54 +0300

false is explicit

Diffstat:
Msubs2srs.lua | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/subs2srs.lua b/subs2srs.lua @@ -790,8 +790,8 @@ menu.keybinds = { { key = 'c', fn = function() subs.set_starting_line() end }, { key = 'r', fn = function() subs.reset_timings() end }, { key = 'g', fn = function() export_to_anki(true) end }, - { key = 'n', fn = function() export_to_anki() end }, - { key = 'm', fn = function() update_last_note() end }, + { key = 'n', fn = function() export_to_anki(false) end }, + { key = 'm', fn = function() update_last_note(false) end }, { key = 'M', fn = function() update_last_note(true) end }, { key = 't', fn = function() clip_autocopy.toggle() end }, { key = 'ESC', fn = function() menu.close() end },