Rename nextsearch command to search-next

This commit is contained in:
Florian Bruhin 2014-05-19 04:21:30 +02:00
parent 42fa415b17
commit da2dc4861f
2 changed files with 2 additions and 2 deletions

View File

@ -116,7 +116,7 @@ class SearchManager(QObject):
self._search(text, rev=True)
@cmdutils.register(instance='searchmanager', hide=True)
def nextsearch(self, count=1):
def search_next(self, count=1):
"""Continue the search to the ([count]th) next term.
Args:

View File

@ -618,7 +618,7 @@ DATA = OrderedDict([
('u', 'undo'),
('gg', 'scroll-perc-y 0'),
('G', 'scroll-perc-y'),
('n', 'nextsearch'),
('n', 'search-next'),
('i', 'enter-mode insert'),
('yy', 'yank'),
('yY', 'yank sel'),