Update docs

This commit is contained in:
Florian Bruhin 2018-02-10 10:36:58 +01:00
parent 92bc61d08d
commit 995e563352
3 changed files with 10 additions and 1 deletions

View File

@ -32,6 +32,7 @@ Added
to cycle through inputs. to cycle through inputs.
- New `--no-last` flag for `:tab-focus` to not focus the last tab when focusing - New `--no-last` flag for `:tab-focus` to not focus the last tab when focusing
the currently focused one. the currently focused one.
- New `--edit` flag for `:view-source` to open the source in an external editor.
Changed Changed
~~~~~~~ ~~~~~~~
@ -76,6 +77,8 @@ Removed
- `QUTE_SELECTED_HTML` is now not set for userscripts anymore except when called - `QUTE_SELECTED_HTML` is now not set for userscripts anymore except when called
via hints. via hints.
- The `qutebrowser_viewsource` userscript has been removed as `:view-source
--edit` can now be used.
v1.1.1 v1.1.1
------ ------

View File

@ -1326,8 +1326,13 @@ Show version information.
[[view-source]] [[view-source]]
=== view-source === view-source
Syntax: +:view-source [*--edit*]+
Show the source of the current page in a new tab. Show the source of the current page in a new tab.
==== optional arguments
* +*-e*+, +*--edit*+: Edit the source in the editor instead of opening a tab.
[[window-only]] [[window-only]]
=== window-only === window-only
Close all windows except for the current one. Close all windows except for the current one.

View File

@ -1511,7 +1511,8 @@ class CommandDispatcher:
"""Show the source of the current page in a new tab. """Show the source of the current page in a new tab.
Args: Args:
edit: Open source in editor instead of tab.""" edit: Edit the source in the editor instead of opening a tab.
"""
tab = self._current_widget() tab = self._current_widget()
try: try:
current_url = self._current_url() current_url = self._current_url()