From 8773a3c47d5f7039a0fcf8b56f4d20967e4b05df Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Tue, 23 May 2023 12:06:18 -0700 Subject: [PATCH] only map <100 files --- aider/coder.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aider/coder.py b/aider/coder.py index 1f8dcd303..6778f5729 100755 --- a/aider/coder.py +++ b/aider/coder.py @@ -171,7 +171,7 @@ class Coder: if self.repo is not None: other_files = set(self.get_all_abs_files()) - set(self.abs_fnames) - if other_files and len(other_files) < 1000: + if other_files and len(other_files) < 100: if self.use_ctags: files_listing = get_tags_map(other_files) ctags_msg = " with selected ctags content"