Merge commit 'ad02d01b2a2e2850bd8e53e3543e79579fd0e84c'
This commit is contained in:
commit
3d61eafb07
@ -88,7 +88,7 @@ git format-patch origin/master <1>
|
|||||||
Running qutebrowser
|
Running qutebrowser
|
||||||
-------------------
|
-------------------
|
||||||
|
|
||||||
After link:install.html#tox[installing qutebrowser via tox], you can run
|
After link:install{outfilesuffix}#tox[installing qutebrowser via tox], you can run
|
||||||
`.venv/bin/qutebrowser --debug --temp-basedir` to test your changes with debug
|
`.venv/bin/qutebrowser --debug --temp-basedir` to test your changes with debug
|
||||||
logging enabled and without affecting existing running instances.
|
logging enabled and without affecting existing running instances.
|
||||||
|
|
||||||
|
@ -315,5 +315,5 @@ My issue is not listed.::
|
|||||||
https://github.com/qutebrowser/qutebrowser/issues[the issue tracker] or
|
https://github.com/qutebrowser/qutebrowser/issues[the issue tracker] or
|
||||||
using the `:report` command.
|
using the `:report` command.
|
||||||
If you are reporting a segfault, make sure you read the
|
If you are reporting a segfault, make sure you read the
|
||||||
link:doc/stacktrace.html[guide] on how to report them with all needed
|
link:stacktrace{outfilesuffix}[guide] on how to report them with all needed
|
||||||
information.
|
information.
|
||||||
|
@ -758,11 +758,11 @@ This tries to automatically click on typical _Previous Page_ or _Next Page_ link
|
|||||||
- `up`: Go up a level in the current URL.
|
- `up`: Go up a level in the current URL.
|
||||||
- `increment`: Increment the last number in the URL.
|
- `increment`: Increment the last number in the URL.
|
||||||
Uses the
|
Uses the
|
||||||
link:settings.html#url.incdec_segments[url.incdec_segments]
|
link:settings{outsuffix}#url.incdec_segments[url.incdec_segments]
|
||||||
config option.
|
config option.
|
||||||
- `decrement`: Decrement the last number in the URL.
|
- `decrement`: Decrement the last number in the URL.
|
||||||
Uses the
|
Uses the
|
||||||
link:settings.html#url.incdec_segments[url.incdec_segments]
|
link:settings{outsuffix}#url.incdec_segments[url.incdec_segments]
|
||||||
config option.
|
config option.
|
||||||
|
|
||||||
|
|
||||||
|
@ -44,7 +44,7 @@ If you want to customize many settings, you can open the link:qute://settings[]
|
|||||||
page by running `:set` without any arguments, where all settings are listed and
|
page by running `:set` without any arguments, where all settings are listed and
|
||||||
customizable.
|
customizable.
|
||||||
|
|
||||||
Using the link:commands.html#set[`:set`] command and command completion, you
|
Using the link:commands{outfilesuffix}#set[`:set`] command and command completion, you
|
||||||
can quickly set settings interactively, for example `:set tabs.position left`.
|
can quickly set settings interactively, for example `:set tabs.position left`.
|
||||||
|
|
||||||
Some settings are also customizable for a given
|
Some settings are also customizable for a given
|
||||||
@ -53,8 +53,8 @@ https://developer.chrome.com/apps/match_patterns[URL pattern] by doing e.g.
|
|||||||
|
|
||||||
To get more help about a setting, use e.g. `:help tabs.position`.
|
To get more help about a setting, use e.g. `:help tabs.position`.
|
||||||
|
|
||||||
To bind and unbind keys, you can use the link:commands.html#bind[`:bind`] and
|
To bind and unbind keys, you can use the link:commands{outfilesuffix}#bind[`:bind`] and
|
||||||
link:commands.html#unbind[`:unbind`] commands:
|
link:commands{outfilesuffix}#unbind[`:unbind`] commands:
|
||||||
|
|
||||||
- Binding the key chain `,v` to the `:spawn mpv {url}` command:
|
- Binding the key chain `,v` to the `:spawn mpv {url}` command:
|
||||||
`:bind ,v spawn mpv {url}`
|
`:bind ,v spawn mpv {url}`
|
||||||
@ -67,9 +67,9 @@ See the help pages linked above (or `:help :bind`, `:help :unbind`) for more
|
|||||||
information.
|
information.
|
||||||
|
|
||||||
Other useful commands for config manipulation are
|
Other useful commands for config manipulation are
|
||||||
link:commands.html#config-unset[`:config-unset`] to reset a value to its default,
|
link:commands{outfilesuffix}#config-unset[`:config-unset`] to reset a value to its default,
|
||||||
link:commands.html#config-clear[`:config-clear`] to reset the entire configuration,
|
link:commands{outfilesuffix}#config-clear[`:config-clear`] to reset the entire configuration,
|
||||||
and link:commands.html#config-cycle[`:config-cycle`] to cycle a setting between
|
and link:commands{outfilesuffix}#config-cycle[`:config-cycle`] to cycle a setting between
|
||||||
different values.
|
different values.
|
||||||
|
|
||||||
[[configpy]]
|
[[configpy]]
|
||||||
@ -111,7 +111,7 @@ Note that qutebrowser does some Python magic so it's able to warn you about
|
|||||||
mistyped config settings. As an example, if you do `c.tabs.possition = "left"`,
|
mistyped config settings. As an example, if you do `c.tabs.possition = "left"`,
|
||||||
you'll get an error when starting.
|
you'll get an error when starting.
|
||||||
|
|
||||||
See the link:settings.html[settings help page] for all available settings. The
|
See the link:settings{outfilesuffix}[settings help page] for all available settings. The
|
||||||
accepted values depend on the type of the option. Commonly used are:
|
accepted values depend on the type of the option. Commonly used are:
|
||||||
|
|
||||||
- Strings: `c.tabs.position = "left"`
|
- Strings: `c.tabs.position = "left"`
|
||||||
@ -187,7 +187,7 @@ preferred to use the `config.bind` command. Doing so ensures the commands are
|
|||||||
valid and normalizes different expressions which map to the same key.
|
valid and normalizes different expressions which map to the same key.
|
||||||
|
|
||||||
For details on how to specify keys and the available modes, see the
|
For details on how to specify keys and the available modes, see the
|
||||||
link:settings.html#bindings.commands[documentation] for the `bindings.commands`
|
link:settings{outfilesuffix}#bindings.commands[documentation] for the `bindings.commands`
|
||||||
setting.
|
setting.
|
||||||
|
|
||||||
To bind a key:
|
To bind a key:
|
||||||
|
@ -6,14 +6,14 @@ Documentation
|
|||||||
|
|
||||||
The following help pages are currently available:
|
The following help pages are currently available:
|
||||||
|
|
||||||
* link:../quickstart.html[Quick start guide]
|
* link:../quickstart{outfilesuffix}[Quick start guide]
|
||||||
* link:../faq.html[Frequently asked questions]
|
* link:../faq{outfilesuffix}[Frequently asked questions]
|
||||||
* link:../changelog.html[Change Log]
|
* link:../changelog{outfilesuffix}[Change Log]
|
||||||
* link:commands.html[Documentation of commands]
|
* link:commands{outfilesuffix}[Documentation of commands]
|
||||||
* link:configuring.html[Configuring qutebrowser]
|
* link:configuring{outfilesuffix}[Configuring qutebrowser]
|
||||||
* link:settings.html[Documentation of settings]
|
* link:settings{outfilesuffix}[Documentation of settings]
|
||||||
* link:../userscripts.html[How to write userscripts]
|
* link:../userscripts{outfilesuffix}[How to write userscripts]
|
||||||
* link:../contributing.html[Contributing to qutebrowser]
|
* link:../contributing{outfilesuffix}[Contributing to qutebrowser]
|
||||||
|
|
||||||
Getting help
|
Getting help
|
||||||
------------
|
------------
|
||||||
|
@ -612,11 +612,11 @@ class CommandDispatcher:
|
|||||||
- `up`: Go up a level in the current URL.
|
- `up`: Go up a level in the current URL.
|
||||||
- `increment`: Increment the last number in the URL.
|
- `increment`: Increment the last number in the URL.
|
||||||
Uses the
|
Uses the
|
||||||
link:settings.html#url.incdec_segments[url.incdec_segments]
|
link:settings{outsuffix}#url.incdec_segments[url.incdec_segments]
|
||||||
config option.
|
config option.
|
||||||
- `decrement`: Decrement the last number in the URL.
|
- `decrement`: Decrement the last number in the URL.
|
||||||
Uses the
|
Uses the
|
||||||
link:settings.html#url.incdec_segments[url.incdec_segments]
|
link:settings{outsuffix}#url.incdec_segments[url.incdec_segments]
|
||||||
config option.
|
config option.
|
||||||
|
|
||||||
tab: Open in a new tab.
|
tab: Open in a new tab.
|
||||||
|
Loading…
Reference in New Issue
Block a user