From 579fc39d61c438f127e7236302f80085eca8005b Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Mon, 5 Jun 2023 11:32:26 -0700 Subject: [PATCH] rename --- aider/io.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/aider/io.py b/aider/io.py index fa451fd4b..20e1647d2 100644 --- a/aider/io.py +++ b/aider/io.py @@ -15,7 +15,7 @@ from rich.console import Console from rich.text import Text -class FileContentCompleter(Completer): +class AutoCompleter(Completer): def __init__(self, root, rel_fnames, addable_rel_fnames, commands): self.commands = commands self.addable_rel_fnames = addable_rel_fnames @@ -142,9 +142,7 @@ class InputOutput: style = None while True: - completer_instance = FileContentCompleter( - root, rel_fnames, addable_rel_fnames, commands - ) + completer_instance = AutoCompleter(root, rel_fnames, addable_rel_fnames, commands) if multiline_input: show = ". "