feat: Add CLI option to install tree-sitter language pack

This commit is contained in:
Paul Gauthier 2025-02-09 17:19:19 -08:00 committed by Paul Gauthier (aider)
parent 737021ccdf
commit 42237ced80
2 changed files with 20 additions and 0 deletions

View file

@ -823,6 +823,12 @@ def get_parser(default_config_files, git_root):
"--editor",
help="Specify which editor to use for the /editor command",
)
group.add_argument(
"--install-tree-sitter-language-pack",
action="store_true",
help="Install the tree_sitter_language_pack (experimental)",
default=False,
)
return parser