From 361690b3f94eb86cc08ce572782ab8ecf3475ba3 Mon Sep 17 00:00:00 2001 From: Pierre Neidhardt Date: Mon, 16 Oct 2017 20:00:18 +0100 Subject: [PATCH] qutebrowser: Switch bindings for primary selection and clipboard --- .config/qutebrowser/config.py | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.config/qutebrowser/config.py b/.config/qutebrowser/config.py index 5a9df5b7..725b92cf 100644 --- a/.config/qutebrowser/config.py +++ b/.config/qutebrowser/config.py @@ -42,6 +42,18 @@ c.url.searchengines = { } config.bind(',v', 'spawn mpv {url}') +config.bind('yy', 'yank -s') +config.bind('yY', 'yank') +config.bind('yd', 'yank -s domain') +config.bind('yD', 'yank domain') +config.bind('yp', 'yank -s pretty-url') +config.bind('yP', 'yank pretty-url') +config.bind('yt', 'yank -s title') +config.bind('yT', 'yank title') +config.bind('pp', 'open -- {primary}') +config.bind('pP', 'open -- {clipboard}') +config.bind('Pp', 'open -t -- {primary}') +config.bind('PP', 'open -t -- {clipboard}') ## Uncomment this to still load settings configured via autoconfig.yml # config.load_autoconfig()