mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-03 19:24:59 +00:00
tweaking cmd line args, readme usage
This commit is contained in:
parent
905a81d78e
commit
c33169756a
2 changed files with 22 additions and 23 deletions
|
@ -100,7 +100,6 @@ def main(args=None, input=None, output=None):
|
|||
"--no-pretty",
|
||||
action="store_false",
|
||||
dest="pretty",
|
||||
env_var=f"{env_prefix}PRETTY",
|
||||
help="Disable pretty, colorized output",
|
||||
)
|
||||
parser.add_argument(
|
||||
|
@ -111,6 +110,7 @@ def main(args=None, input=None, output=None):
|
|||
parser.add_argument(
|
||||
"--auto-commits",
|
||||
action="store_true",
|
||||
env_var=f"{env_prefix}AUTO_COMMIT",
|
||||
default=True,
|
||||
help="Enable auto commit of changes (default: True)",
|
||||
)
|
||||
|
@ -119,7 +119,6 @@ def main(args=None, input=None, output=None):
|
|||
"--no-auto-commits",
|
||||
action="store_false",
|
||||
dest="auto_commit",
|
||||
env_var=f"{env_prefix}AUTO_COMMIT",
|
||||
help="Disable auto commit of changes",
|
||||
)
|
||||
parser.add_argument(
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue