feat: Add --notifications flag to control terminal bell

This commit is contained in:
Paul Gauthier (aider) 2025-03-06 11:55:32 -08:00
parent 665ffe3984
commit 2fe1b1e16e
2 changed files with 9 additions and 1 deletions

View file

@ -813,6 +813,12 @@ def get_parser(default_config_files, git_root):
default=False,
help="Enable/disable multi-line input mode with Meta-Enter to submit (default: False)",
)
group.add_argument(
"--notifications",
action=argparse.BooleanOptionalAction,
default=False,
help="Enable/disable terminal bell notifications when LLM responses are ready (default: False)",
)
group.add_argument(
"--detect-urls",
action=argparse.BooleanOptionalAction,