diff --git a/doc/help/commands.asciidoc b/doc/help/commands.asciidoc index 5706a6bfb..7b2d8e6c4 100644 --- a/doc/help/commands.asciidoc +++ b/doc/help/commands.asciidoc @@ -60,6 +60,7 @@ It is possible to run or bind multiple commands by separating them with `;;`. |<>|Show a log of past messages. |<>|Open typical prev/next links or navigate using the URL path. |<>|Open a URL in the current/[count]th tab. +|<>|Open an external editor with the currently selected form field. |<>|Print the current/[count]th tab. |<>|Add a new quickmark. |<>|Delete a quickmark. @@ -657,6 +658,12 @@ The tab index to open the URL in. ==== note * This command does not split arguments after the last argument and handles quotes literally. +[[open-editor]] +=== open-editor +Open an external editor with the currently selected form field. + +The editor which should be launched can be configured via the `editor.command` config option. + [[print]] === print Syntax: +:print [*--preview*] [*--pdf* 'file']+ @@ -1158,7 +1165,6 @@ How many steps to zoom out. |<>|Move the cursor or selection to the start of next block. |<>|Move the cursor or selection to the start of previous block. |<>|Do nothing. -|<>|Open an external editor with the currently selected form field. |<>|Accept the current prompt. |<>|Shift the focus of the prompt file completion menu to another item. |<>|Immediately open a download. @@ -1409,12 +1415,6 @@ How many blocks to move. === nop Do nothing. -[[open-editor]] -=== open-editor -Open an external editor with the currently selected form field. - -The editor which should be launched can be configured via the `editor.command` config option. - [[prompt-accept]] === prompt-accept Syntax: +:prompt-accept ['value']+ diff --git a/qutebrowser/browser/commands.py b/qutebrowser/browser/commands.py index 17179b6ff..3d07e0de7 100644 --- a/qutebrowser/browser/commands.py +++ b/qutebrowser/browser/commands.py @@ -1625,8 +1625,7 @@ class CommandDispatcher: self.on_editing_finished, elem)) ed.edit(text, caret_position) - @cmdutils.register(instance='command-dispatcher', hide=True, - scope='window') + @cmdutils.register(instance='command-dispatcher', scope='window') def open_editor(self): """Open an external editor with the currently selected form field.