From 31027496a8219d3ccb25161d44bad3f3d511fdd8 Mon Sep 17 00:00:00 2001 From: hugsy Date: Fri, 9 Apr 2021 09:58:49 -0700 Subject: [PATCH] Update fix of #628: removing unnecssary completion for pcustom --- gef.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gef.py b/gef.py index 079e55a55..714e5376c 100644 --- a/gef.py +++ b/gef.py @@ -5065,7 +5065,7 @@ class PCustomListCommand(PCustomCommand): _syntax_ = "{:s}".format(_cmdline_) def __init__(self): - super().__init__(complete=gdb.COMPLETE_SYMBOL) + super().__init__() return def do_invoke(self, argv): @@ -5093,7 +5093,7 @@ class PCustomShowCommand(PCustomCommand): __aliases__ = ["pcustom create", "pcustom update"] def __init__(self): - super().__init__(complete=gdb.COMPLETE_FILENAME) + super().__init__() return def do_invoke(self, argv): @@ -5143,7 +5143,7 @@ class PCustomEditCommand(PCustomCommand): __aliases__ = ["pcustom create", "pcustom new", "pcustom update"] def __init__(self): - super().__init__(complete=gdb.COMPLETE_FILENAME) + super().__init__() return def do_invoke(self, argv):