From 935832028a98c7c717c3c71bdebe8a27777c544c Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sun, 1 Dec 2024 09:33:56 -0800 Subject: [PATCH] feat: add --watch-files switch for FileWatcher control --- aider/args.py | 1 + 1 file changed, 1 insertion(+) diff --git a/aider/args.py b/aider/args.py index 151724565..d6564ad99 100644 --- a/aider/args.py +++ b/aider/args.py @@ -15,6 +15,7 @@ from aider.args_formatter import ( from .dump import dump # noqa: F401 +# add --watch-files switch to control FileWatcher ai! def default_env_file(git_root): return os.path.join(git_root, ".env") if git_root else ".env"