From 38144590243c3fc3c6bd27d807986737deaff5ba Mon Sep 17 00:00:00 2001 From: Kyle Yasuda Date: Tue, 8 Aug 2023 02:21:24 -0700 Subject: [PATCH] update move cursor functions to allow holding down key (#11) --- mpv-youtube-queue.lua | 38 ++++++++++++++++++++++---------------- 1 file changed, 22 insertions(+), 16 deletions(-) diff --git a/mpv-youtube-queue.lua b/mpv-youtube-queue.lua index af7ef82..d3e9630 100644 --- a/mpv-youtube-queue.lua +++ b/mpv-youtube-queue.lua @@ -370,24 +370,30 @@ function YouTubeQueue.print_queue(duration) end end -function YouTubeQueue.move_cursor_up() - if selected_index > 1 then - selected_index = selected_index - 1 - if selected_index < display_offset + 1 then - display_offset = display_offset - 1 - end - YouTubeQueue.print_queue(MSG_DURATION) +function YouTubeQueue.move_cursor_up(amt) + selected_index = selected_index - amt + if selected_index < 1 then + selected_index = 1 + elseif selected_index > #video_queue then + selected_index = #video_queue end + if selected_index > 1 and selected_index < display_offset + 1 then + display_offset = display_offset - math.abs(selected_index - amt) + end + YouTubeQueue.print_queue(MSG_DURATION) end -function YouTubeQueue.move_cursor_down() - if selected_index < YouTubeQueue.size() then - selected_index = selected_index + 1 - if selected_index > display_offset + display_limit then - display_offset = display_offset + 1 - end - YouTubeQueue.print_queue(MSG_DURATION) +function YouTubeQueue.move_cursor_down(amt) + selected_index = selected_index + amt + if selected_index < 1 then + selected_index = 1 + elseif selected_index > #video_queue then + selected_index = #video_queue end + if selected_index < #video_queue and selected_index > display_offset + display_limit then + display_offset = display_offset + math.abs(selected_index - amt) + end + YouTubeQueue.print_queue(MSG_DURATION) end function YouTubeQueue.play_video_at(idx) @@ -618,9 +624,9 @@ mp.add_key_binding(options.play_previous_in_queue, "play_previous_video", YouTubeQueue.play_previous_video) mp.add_key_binding(options.print_queue, "print_queue", YouTubeQueue.print_queue) mp.add_key_binding(options.move_cursor_up, "move_cursor_up", - YouTubeQueue.move_cursor_up, { repeatable = true }) + function() YouTubeQueue.move_cursor_up(1) end, { repeatable = true }) mp.add_key_binding(options.move_cursor_down, "move_cursor_down", - YouTubeQueue.move_cursor_down, { repeatable = true }) + function() YouTubeQueue.move_cursor_down(1) end, { repeatable = true }) mp.add_key_binding(options.play_selected_video, "play_selected_video", YouTubeQueue.play_selected_video) mp.add_key_binding(options.open_video_in_browser, "open_video_in_browser",