From 7758289f8b3f0988cc44146ba7e535127911da15 Mon Sep 17 00:00:00 2001 From: Florian Bruhin Date: Tue, 22 Apr 2014 15:04:40 +0200 Subject: [PATCH] Register :nextsearch command. --- qutebrowser/commands/parsers.py | 1 + 1 file changed, 1 insertion(+) diff --git a/qutebrowser/commands/parsers.py b/qutebrowser/commands/parsers.py index 78da5d6bf..3d0c87bbf 100644 --- a/qutebrowser/commands/parsers.py +++ b/qutebrowser/commands/parsers.py @@ -107,6 +107,7 @@ class SearchParser(QObject): """ self._search(text, rev=True) + @cmdutils.register(instance='searchparser', hide=True) def nextsearch(self, count=1): """Continue the search to the ([count]th) next term.