diff options
-rw-r--r-- | qutebrowser/bookmarks/urls | 1 | ||||
-rw-r--r-- | qutebrowser/config.py | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/qutebrowser/bookmarks/urls b/qutebrowser/bookmarks/urls index a545f70..768b40e 100644 --- a/qutebrowser/bookmarks/urls +++ b/qutebrowser/bookmarks/urls @@ -23,3 +23,4 @@ https://www.britishgas.co.uk/my-account/premises/001A4BF58A241ED1A0B0FB818A255E0 https://wiki.lineageos.org/upgrading.html Upgrading LineageOS | LineageOS Wiki http://www.qutebrowser.org/doc/help/commands.html | qutebrowser http://wellclosemedicalgroup.co.uk/ Well Close Medical Group +https://www.cyberciti.biz/faq/install-configure-openvpn-client-on-openbsd-desktop/ How to install and configure OpenVPN client on OpenBSD - nixCraft 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 |