updated history; restored YAMLConfigFileParser

This commit is contained in:
Paul Gauthier 2024-06-16 20:56:12 -07:00
parent 0d97f52316
commit 48d86a9481
2 changed files with 2 additions and 0 deletions

View file

@ -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.

View file

@ -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")