Hide command_item_{prev,next}
This commit is contained in:
parent
aeb4980f7e
commit
2d0225a292
@ -297,12 +297,12 @@ class CompletionView(QTreeView):
|
|||||||
selmod.clearSelection()
|
selmod.clearSelection()
|
||||||
selmod.clearCurrentIndex()
|
selmod.clearCurrentIndex()
|
||||||
|
|
||||||
@cmdutils.register(instance='mainwindow.completion')
|
@cmdutils.register(instance='mainwindow.completion', hide=True)
|
||||||
def command_item_prev(self):
|
def command_item_prev(self):
|
||||||
"""Select the previous completion item."""
|
"""Select the previous completion item."""
|
||||||
self._next_prev_item(prev=True)
|
self._next_prev_item(prev=True)
|
||||||
|
|
||||||
@cmdutils.register(instance='mainwindow.completion')
|
@cmdutils.register(instance='mainwindow.completion', hide=True)
|
||||||
def command_item_next(self):
|
def command_item_next(self):
|
||||||
"""Select the next completion item."""
|
"""Select the next completion item."""
|
||||||
self._next_prev_item(prev=False)
|
self._next_prev_item(prev=False)
|
||||||
|
Loading…
Reference in New Issue
Block a user