Skip to content

Commit

Permalink
change default move cursor up/down keys to vim keybindings
Browse files Browse the repository at this point in the history
  • Loading branch information
ksyasuda committed Aug 7, 2023
1 parent 0e041c2 commit ac73fb2
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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_selected_video - ctrl+D`: Download the currently selected video
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
- `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
Expand All @@ -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
- `remove_from_queue - ctrl+x`: Remove the currently selected video from the
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
the queue

Expand Down
4 changes: 2 additions & 2 deletions mpv-youtube-queue.conf
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
add_to_queue=ctrl+a
download_current_video=ctrl+d
download_selected_video=ctrl+D
move_cursor_down=ctrl+j
move_cursor_up=ctrl+k
move_video=ctrl+m
play_next_in_queue=ctrl+n
open_video_in_browser=ctrl+o
Expand All @@ -9,8 +11,6 @@ play_previous_in_queue=ctrl+p
print_current_video=ctrl+P
print_queue=ctrl+q
remove_from_queue=ctrl+x
move_cursor_up=ctrl+UP
move_cursor_down=ctrl+DOWN
play_selected_video=ctrl+ENTER
browser=firefox
clipboard_command=xclip -o
Expand Down
4 changes: 2 additions & 2 deletions mpv-youtube-queue.lua
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,8 @@ local options = {
add_to_queue = "ctrl+a",
download_current_video = "ctrl+d",
download_selected_video = "ctrl+D",
move_cursor_down = "ctrl+j",
move_cursor_up = "ctrl+k",
move_video = "ctrl+m",
play_next_in_queue = "ctrl+n",
open_video_in_browser = "ctrl+o",
Expand All @@ -30,8 +32,6 @@ local options = {
print_current_video = "ctrl+P",
print_queue = "ctrl+q",
remove_from_queue = "ctrl+x",
move_cursor_up = "ctrl+UP",
move_cursor_down = "ctrl+DOWN",
play_selected_video = "ctrl+ENTER",
browser = "firefox",
clipboard_command = "xclip -o",
Expand Down

0 comments on commit ac73fb2

Please sign in to comment.