From 710d540dcdbc2c43563d2fe4236c29051031c409 Mon Sep 17 00:00:00 2001 From: "Paul Gauthier (aider)" Date: Fri, 21 Mar 2025 09:19:29 -0700 Subject: [PATCH] feat: Add CommandCompletionException class for autocompletion handling --- aider/io.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/aider/io.py b/aider/io.py index ffb364e23..50053a602 100644 --- a/aider/io.py +++ b/aider/io.py @@ -69,6 +69,11 @@ def restore_multiline(func): return wrapper +class CommandCompletionException(Exception): + """Raised when a command should use the normal autocompleter instead of command-specific completion.""" + pass + + @dataclass class ConfirmGroup: preference: str = None