diff --git a/README.asciidoc b/README.asciidoc index 50375ad1a..d0c85d5f6 100644 --- a/README.asciidoc +++ b/README.asciidoc @@ -234,6 +234,7 @@ Contributors, sorted by the number of commits in descending order: * Regina Hug * Mathias Fussenegger * Marcelo Santos +* Lucas Hoffmann * Joel Bradshaw * Jean-Louis Fuchs * Franz Fellner diff --git a/doc/help/commands.asciidoc b/doc/help/commands.asciidoc index 3f656dc49..0e993b723 100644 --- a/doc/help/commands.asciidoc +++ b/doc/help/commands.asciidoc @@ -84,7 +84,7 @@ It is possible to run or bind multiple commands by separating them with `;;`. |<>|Switch to the previous tab, or switch [count] tabs back. |<>|Unbind a keychain. |<>|Re-open a closed tab (optionally skipping [count] closed tabs). -|<>|Show the source of the current page. +|<>|Show the source of the current page in a new tab. |<>|Close all windows except for the current one. |<>|Save open pages and quit. |<>|Yank something to the clipboard or primary selection. @@ -898,7 +898,7 @@ Re-open a closed tab (optionally skipping [count] closed tabs). [[view-source]] === view-source -Show the source of the current page. +Show the source of the current page in a new tab. [[window-only]] === window-only diff --git a/doc/help/settings.asciidoc b/doc/help/settings.asciidoc index 62700ac6f..114a9c9d6 100644 --- a/doc/help/settings.asciidoc +++ b/doc/help/settings.asciidoc @@ -1666,7 +1666,7 @@ Mode to use for hints. Valid values: - * +number+: Use numeric hints. + * +number+: Use numeric hints. (In this mode you can also type letters form the hinted element to filter and reduce the number of elements that are hinted.) * +letter+: Use the chars in the hints -> chars setting. * +word+: Use hints words based on the html elements and the extra words. diff --git a/qutebrowser/browser/commands.py b/qutebrowser/browser/commands.py index 2a1988f3b..3bfe22bed 100644 --- a/qutebrowser/browser/commands.py +++ b/qutebrowser/browser/commands.py @@ -1349,7 +1349,7 @@ class CommandDispatcher: @cmdutils.register(instance='command-dispatcher', scope='window') def view_source(self): - """Show the source of the current page.""" + """Show the source of the current page in a new tab.""" # pylint: disable=no-member # WORKAROUND for https://bitbucket.org/logilab/pylint/issue/491/ tab = self._current_widget() diff --git a/qutebrowser/config/configdata.py b/qutebrowser/config/configdata.py index 5a5770d38..657e26857 100644 --- a/qutebrowser/config/configdata.py +++ b/qutebrowser/config/configdata.py @@ -937,7 +937,9 @@ def data(readonly=False): ('mode', SettingValue(typ.String( valid_values=typ.ValidValues( - ('number', "Use numeric hints."), + ('number', "Use numeric hints. (In this mode you can " + "also type letters form the hinted element to filter " + "and reduce the number of elements that are hinted.)"), ('letter', "Use the chars in the hints -> " "chars setting."), ('word', "Use hints words based on the html "