diff --git a/aider/getinput.py b/aider/getinput.py index 60fa8f01f..2c0d5b4ec 100644 --- a/aider/getinput.py +++ b/aider/getinput.py @@ -40,7 +40,7 @@ class FileContentCompleter(Completer): last_word = words[-1] for word in self.words: - if word.startswith(last_word): + if word.lower().startswith(last_word.lower()): yield Completion(word, start_position=-len(last_word)) def canned_input(show_prompt):