From 48d86a948126344bbc9a61d3361b88740923d053 Mon Sep 17 00:00:00 2001 From: Paul Gauthier Date: Sun, 16 Jun 2024 20:56:12 -0700 Subject: [PATCH] updated history; restored YAMLConfigFileParser --- HISTORY.md | 1 + aider/args.py | 1 + 2 files changed, 2 insertions(+) diff --git a/HISTORY.md b/HISTORY.md index 1a982c2bf..b942f392b 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -6,6 +6,7 @@ - Use `--vim` for [vim keybindings](https://aider.chat/docs/commands.html#vi) in the chat. - [Add LLM metadata](https://aider.chat/docs/llms/warnings.html#specifying-context-window-size-and-token-costs) via `.aider.models.json` file (by @caseymcc). - More detailed [error messages on token limit errors](https://aider.chat/docs/troubleshooting/token-limits.html). +- Single line commit messages, without the recent chat messages. - Ensure `--commit --dry-run` does nothing. - Have playwright wait for idle network to better scrape js sites. - Documentation updates, moved into website/ subdir. diff --git a/aider/args.py b/aider/args.py index 52d5253ff..716bca4f8 100644 --- a/aider/args.py +++ b/aider/args.py @@ -17,6 +17,7 @@ def get_parser(default_config_files, git_root): description="aider is GPT powered coding in your terminal", add_config_file_help=True, default_config_files=default_config_files, + config_file_parser_class=configargparse.YAMLConfigFileParser, auto_env_var_prefix="AIDER_", ) group = parser.add_argument_group("Main")