Merge branch 'private_tag_tab_title' of https://github.com/craftyguy/qutebrowser
This commit is contained in:
commit
6361a5bab2
@ -696,7 +696,7 @@ def data(readonly=False):
|
|||||||
('title-format',
|
('title-format',
|
||||||
SettingValue(typ.FormatString(
|
SettingValue(typ.FormatString(
|
||||||
fields=['perc', 'perc_raw', 'title', 'title_sep', 'index',
|
fields=['perc', 'perc_raw', 'title', 'title_sep', 'index',
|
||||||
'id', 'scroll_pos', 'host'], none_ok=True),
|
'id', 'scroll_pos', 'host', 'private'], none_ok=True),
|
||||||
'{index}: {title}'),
|
'{index}: {title}'),
|
||||||
"The format to use for the tab title. The following placeholders "
|
"The format to use for the tab title. The following placeholders "
|
||||||
"are defined:\n\n"
|
"are defined:\n\n"
|
||||||
@ -709,12 +709,13 @@ def data(readonly=False):
|
|||||||
"* `{id}`: The internal tab ID of this tab.\n"
|
"* `{id}`: The internal tab ID of this tab.\n"
|
||||||
"* `{scroll_pos}`: The page scroll position.\n"
|
"* `{scroll_pos}`: The page scroll position.\n"
|
||||||
"* `{host}`: The host of the current web page.\n"
|
"* `{host}`: The host of the current web page.\n"
|
||||||
"* `{backend}`: Either 'webkit' or 'webengine'"),
|
"* `{backend}`: Either 'webkit' or 'webengine'\n"
|
||||||
|
"* `{private}` : Indicates when private mode is enabled.\n"),
|
||||||
|
|
||||||
('title-format-pinned',
|
('title-format-pinned',
|
||||||
SettingValue(typ.FormatString(
|
SettingValue(typ.FormatString(
|
||||||
fields=['perc', 'perc_raw', 'title', 'title_sep', 'index',
|
fields=['perc', 'perc_raw', 'title', 'title_sep', 'index',
|
||||||
'id', 'scroll_pos', 'host'], none_ok=True),
|
'id', 'scroll_pos', 'host', 'private'], none_ok=True),
|
||||||
'{index}'),
|
'{index}'),
|
||||||
"The format to use for the tab title for pinned tabs. "
|
"The format to use for the tab title for pinned tabs. "
|
||||||
"The same placeholders like for title-format are defined."),
|
"The same placeholders like for title-format are defined."),
|
||||||
|
Loading…
Reference in New Issue
Block a user