feat: add --fancy-input flag to control input history and completion

This commit is contained in:
Paul Gauthier (aider) 2024-10-24 14:24:09 -07:00
parent 97a9c65125
commit 43fbda0faf
2 changed files with 7 additions and 0 deletions

View file

@ -688,6 +688,12 @@ def get_parser(default_config_files, git_root):
default=True,
help="Enable/disable suggesting shell commands (default: True)",
)
group.add_argument(
"--fancy-input",
action=argparse.BooleanOptionalAction,
default=True,
help="Enable/disable fancy input with history and completion (default: True)",
)
##########
group = parser.add_argument_group("Voice Settings")