diff --git a/doc/help/settings.asciidoc b/doc/help/settings.asciidoc index 56cab15bb..d2b1ab985 100644 --- a/doc/help/settings.asciidoc +++ b/doc/help/settings.asciidoc @@ -7,7 +7,7 @@ |<>|Whether to find text on a page case-insensitively. |<>|Whether to wrap finding text to the top when arriving at the end. |<>|The default page(s) to open at the start, separated by commas. -|<>|The page to open if :open -t/-b/-w is used without URL. +|<>|The page to open if :open -t/-b/-w is used without URL. Use `about:blank` for a blank page. |<>|Whether to start a search when something else than a URL is entered. |<>|Whether to save the config automatically on quit. |<>|How often (in milliseconds) to auto-save config/cookies/etc. @@ -269,7 +269,7 @@ Default: +pass:[https://www.duckduckgo.com]+ [[general-default-page]] === default-page -The page to open if :open -t/-b/-w is used without URL. +The page to open if :open -t/-b/-w is used without URL. Use `about:blank` for a blank page. Default: +pass:[${startpage}]+ diff --git a/qutebrowser/config/configdata.py b/qutebrowser/config/configdata.py index 0fd724699..692f14a0d 100644 --- a/qutebrowser/config/configdata.py +++ b/qutebrowser/config/configdata.py @@ -133,7 +133,8 @@ DATA = collections.OrderedDict([ ('default-page', SettingValue(typ.FuzzyUrl(), '${startpage}'), - "The page to open if :open -t/-b/-w is used without URL."), + "The page to open if :open -t/-b/-w is used without URL. Use " + "`about:blank` for a blank page."), ('auto-search', SettingValue(typ.AutoSearch(), 'naive'),