Added --gui functionality

This commit is contained in:
Paul Gauthier 2024-04-28 14:08:25 -07:00
parent d60b343274
commit 542c091cf3
2 changed files with 33 additions and 0 deletions

View file

@ -364,5 +364,12 @@ def get_parser(default_config_files, git_root):
" or home directory)"
),
)
group.add_argument(
"--gui",
"--browser",
action="store_true",
help="Run aider in your browser",
default=False,
)
return parser