diff --git a/doc/changelog.asciidoc b/doc/changelog.asciidoc index 6fb47ae9d..1f25fb8bf 100644 --- a/doc/changelog.asciidoc +++ b/doc/changelog.asciidoc @@ -33,6 +33,8 @@ Added - New `--no-last` flag for `:tab-focus` to not focus the last tab when focusing the currently focused one. - New `--edit` flag for `:view-source` to open the source in an external editor. +- New `statusbar.widgets` setting to configure which widgets should be shown in + which order in the statusbar. Changed ~~~~~~~ diff --git a/doc/help/settings.asciidoc b/doc/help/settings.asciidoc index 53dce9e8e..241cdf1aa 100644 --- a/doc/help/settings.asciidoc +++ b/doc/help/settings.asciidoc @@ -230,6 +230,7 @@ |<>|Hide the statusbar unless a message is shown. |<>|Padding (in pixels) for the statusbar. |<>|Position of the status bar. +|<>|List of widgets displayed in the statusbar. |<>|Open new tabs (middleclick/ctrl+click) in the background. |<>|Mouse button with which to close tabs. |<>|How to behave when the close mouse button is pressed on the tab bar. @@ -2683,6 +2684,31 @@ Valid values: Default: +pass:[bottom]+ +[[statusbar.widgets]] +=== statusbar.widgets +List of widgets displayed in the statusbar. + +Type: <> + +Valid values: + + * +url+: Current page URL. + * +scroll+: Percentage of the current page position like `10%`. + * +scroll_raw+: Raw percentage of the current page position like `10`. + * +history+: Display an arrow when possible to go back/forward in history. + * +tabs+: Current active tab, e.g. `2`. + * +keypress+: Display pressed keys when composing a vi command. + * +progress+: Progress bar for the current page loading. + +Default: + +- +pass:[keypress]+ +- +pass:[url]+ +- +pass:[scroll]+ +- +pass:[history]+ +- +pass:[tabs]+ +- +pass:[progress]+ + [[tabs.background]] === tabs.background Open new tabs (middleclick/ctrl+click) in the background.