feat: Add CommandCompletionException class for autocompletion handling

This commit is contained in:
Paul Gauthier (aider) 2025-03-21 09:19:29 -07:00
parent ddef8c2499
commit 710d540dcd

View file

@ -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