diff options
author | Yaroslav <contact@yaroslavps.com> | 2020-06-04 13:35:49 +0300 |
---|---|---|
committer | Yaroslav <contact@yaroslavps.com> | 2020-06-04 13:35:49 +0300 |
commit | 805f4ac3f28c3dbd01df090889fc1e34bb5dcd45 (patch) | |
tree | 9f358a04f4fc700cdc437cd0a27abeb94f2215f8 | |
parent | efd391821c71e520526af49c14721ea968306309 (diff) | |
download | swayrice-805f4ac3f28c3dbd01df090889fc1e34bb5dcd45.tar.gz swayrice-805f4ac3f28c3dbd01df090889fc1e34bb5dcd45.zip |
fixed qutebrowser russian keybind
-rw-r--r-- | dotfiles/.config/qutebrowser/config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/dotfiles/.config/qutebrowser/config.py b/dotfiles/.config/qutebrowser/config.py index c080e53..e2d0ba5 100644 --- a/dotfiles/.config/qutebrowser/config.py +++ b/dotfiles/.config/qutebrowser/config.py @@ -361,7 +361,7 @@ c.colors.tabs.selected.odd.fg = ultramar['base3'] ## Background color for webpages if unset (or empty to use the theme's ## color) ## Type: QtColor -c.colors.webpage.bg = ultramar['base03'] +# c.colors.webpage.bg = ultramar['base03'] # ------------ Key bindings ---------------- @@ -374,7 +374,7 @@ config.bind('<Alt-0>', 'tab-focus -1', mode='normal') config.bind('Р', 'back', mode='normal') config.bind('О', 'tab-next', mode='normal') config.bind('Л', 'tab-prev', mode='normal') -config.bind('Д', 'next', mode='normal') +config.bind('Д', 'forward', mode='normal') config.bind('щ', 'set-cmd-text :open ', mode='normal') config.bind('Щ', 'set-cmd-text :open -t ', mode='normal') |