diff options
Diffstat (limited to 'qutebrowser/config.py')
-rw-r--r-- | qutebrowser/config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/qutebrowser/config.py b/qutebrowser/config.py index f8f3ca3..6ba0a8c 100644 --- a/qutebrowser/config.py +++ b/qutebrowser/config.py @@ -5,7 +5,7 @@ ## This is here so configs done via the GUI are still loaded. ## Remove it to not load settings done via the GUI. -# config.load_autoconfig() +config.load_autoconfig() ## Aliases for commands. The keys of the given dictionary are the ## aliases, while the values are the commands they map to. @@ -956,7 +956,7 @@ config.bind('<z><p><l>', 'spawn --userscript qute-pass --password-only') ## - number: Use numeric hints. (In this mode you can also type letters from the hinted element to filter and reduce the number of elements that are hinted.) ## - letter: Use the characters in the `hints.chars` setting. ## - word: Use hints words based on the html elements and the extra words. -# c.hints.mode = 'letter' +c.hints.mode = 'number' ## Comma-separated list of regular expressions to use for 'next' links. ## Type: List of Regex |