From c6289c2bea799eee1ff0b4d078ed24e436357dfe Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Fri, 21 Mar 2025 09:19:12 -0700 Subject: [PATCH] refactor: Add comment for command completion handling in AutoCompleter --- aider/io.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aider/io.py b/aider/io.py index b31d9dd72..f7ffa3306 100644 --- a/aider/io.py +++ b/aider/io.py @@ -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