Last active
November 4, 2018 23:42
-
-
Save olmokramer/8a175dbc130a48c80db5ad1e4a28f86b to your computer and use it in GitHub Desktop.
Qutebrowser hints for reddit expando buttons
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
config.set('hints.selectors': { | |
'all': [*c.hints.selectors['all'], '.expando-button'], | |
}, pattern='*://*.reddit.com/*') | |
# You can also add a custom hint group that only selects the expand buttons. | |
config.set('hints.selectors', { | |
'reddit-expand': ['.expando-button'], | |
}, pattern='*://*.reddit.com/*') | |
# Add binding for the new hint group. | |
config.bind(';e', 'hint reddit-expand') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment