refactor: Add comment for command completion handling in AutoCompleter

This commit is contained in:
Paul Gauthier 2025-03-21 09:19:12 -07:00 committed by Paul Gauthier (aider)
parent b624bb6fb8
commit c6289c2bea

View file

@ -187,6 +187,7 @@ class AutoCompleter(Completer):
return
if text[0] == "/":
# catch and handle here; make a purpose built exception for this. ai!
yield from self.get_command_completions(document, complete_event, text, words)
return