change default move cursor up/down keys to vim keybindings

This commit is contained in:
ksyasuda 2023-08-07 02:14:34 -07:00
parent 0e041c22e6
commit ac73fb2ba2
No known key found for this signature in database
3 changed files with 6 additions and 6 deletions

View File

@ -49,6 +49,8 @@ This script requires the following software to be installed on the system
- `download_current_video - ctrl+d`: Download the currently playing video - `download_current_video - ctrl+d`: Download the currently playing video
- `download_selected_video - ctrl+D`: Download the currently selected video - `download_selected_video - ctrl+D`: Download the currently selected video
in the queue in the queue
- `move_cursor_down - ctrl+j`: Move the cursor down one row in the queue
- `move_cursor_up - ctrl+k`- Move the cursor up one row in the queue
- `move_video - ctrl+m`: Mark/move the selected video in the queue - `move_video - ctrl+m`: Mark/move the selected video in the queue
- `play_next_in_queue - ctrl+n`: Play the next video in the queue - `play_next_in_queue - ctrl+n`: Play the next video in the queue
- `open_video_in_browser - ctrl+o`: Open the currently playing video in the browser - `open_video_in_browser - ctrl+o`: Open the currently playing video in the browser
@ -60,8 +62,6 @@ This script requires the following software to be installed on the system
- `print_queue - ctrl+q`: Print the contents of the queue to the OSD - `print_queue - ctrl+q`: Print the contents of the queue to the OSD
- `remove_from_queue - ctrl+x`: Remove the currently selected video from the - `remove_from_queue - ctrl+x`: Remove the currently selected video from the
queue queue
- `move_cursor_up - ctrl+UP`- Move the cursor up one row in the queue
- `move_cursor_down - ctrl+DOWN`: Move the cursor down one row in the queue
- `play_selected_video - ctrl+ENTER`: Play the currently selected video in - `play_selected_video - ctrl+ENTER`: Play the currently selected video in
the queue the queue

View File

@ -1,6 +1,8 @@
add_to_queue=ctrl+a add_to_queue=ctrl+a
download_current_video=ctrl+d download_current_video=ctrl+d
download_selected_video=ctrl+D download_selected_video=ctrl+D
move_cursor_down=ctrl+j
move_cursor_up=ctrl+k
move_video=ctrl+m move_video=ctrl+m
play_next_in_queue=ctrl+n play_next_in_queue=ctrl+n
open_video_in_browser=ctrl+o open_video_in_browser=ctrl+o
@ -9,8 +11,6 @@ play_previous_in_queue=ctrl+p
print_current_video=ctrl+P print_current_video=ctrl+P
print_queue=ctrl+q print_queue=ctrl+q
remove_from_queue=ctrl+x remove_from_queue=ctrl+x
move_cursor_up=ctrl+UP
move_cursor_down=ctrl+DOWN
play_selected_video=ctrl+ENTER play_selected_video=ctrl+ENTER
browser=firefox browser=firefox
clipboard_command=xclip -o clipboard_command=xclip -o

View File

@ -22,6 +22,8 @@ local options = {
add_to_queue = "ctrl+a", add_to_queue = "ctrl+a",
download_current_video = "ctrl+d", download_current_video = "ctrl+d",
download_selected_video = "ctrl+D", download_selected_video = "ctrl+D",
move_cursor_down = "ctrl+j",
move_cursor_up = "ctrl+k",
move_video = "ctrl+m", move_video = "ctrl+m",
play_next_in_queue = "ctrl+n", play_next_in_queue = "ctrl+n",
open_video_in_browser = "ctrl+o", open_video_in_browser = "ctrl+o",
@ -30,8 +32,6 @@ local options = {
print_current_video = "ctrl+P", print_current_video = "ctrl+P",
print_queue = "ctrl+q", print_queue = "ctrl+q",
remove_from_queue = "ctrl+x", remove_from_queue = "ctrl+x",
move_cursor_up = "ctrl+UP",
move_cursor_down = "ctrl+DOWN",
play_selected_video = "ctrl+ENTER", play_selected_video = "ctrl+ENTER",
browser = "firefox", browser = "firefox",
clipboard_command = "xclip -o", clipboard_command = "xclip -o",