[QB] Better video management

This commit is contained in:
Gregory Trolliet 2021-07-18 09:01:50 +02:00
parent 09326bf31b
commit d3a2ebda1a
1 changed files with 4 additions and 4 deletions

View File

@ -18,11 +18,11 @@ config.bind('w', 'set-cmd-text -s :open -t', mode='normal')
config.bind('W', 'set-cmd-text -s :open -t {url:pretty}', mode='normal')
config.bind('Fy', 'hint links yank-primary', mode='normal')
config.bind('yy', 'yank -s', mode='normal')
config.bind('Ev', 'spawn --detach mpv --ytdl-format=bestvideo[height<=480]+bestaudio {url}', mode='normal')
config.bind('EV', 'spawn --detach mpv {url}', mode='normal')
config.bind('Ev', 'spawn --detach mpv --ytdl-format=worstvideo[height>=480]+bestaudio {url}', mode='normal')
config.bind('EV', 'spawn --detach mpv --ytdl-format=bestvideo[height<=1080]+bestaudio {url}', mode='normal')
config.bind('Ea', 'spawn --detach mpv --no-video --force-window=yes {url}', mode='normal')
config.bind('Fv', 'hint links spawn --detach mpv --ytdl-format=bestvideo[height<=480]+bestaudio {hint-url}', mode='normal')
config.bind('FV', 'hint links spawn --detach mpv {hint-url}', mode='normal')
config.bind('Fv', 'hint links spawn --detach mpv --ytdl-format=worstvideo[height>=480]+bestaudio {hint-url}', mode='normal')
config.bind('FV', 'hint links spawn --detach mpv --ytdl-format=bestvideo[height<=1080]+bestaudio {hint-url}', mode='normal')
config.bind('Fa', 'hint links spawn --detach mpv --no-video --force-window=yes {hint-url}', mode='normal')
config.unbind('F')
config.bind('<Backspace>', 'back', mode='normal')