mirror of
https://github.com/Aider-AI/aider.git
synced 2025-05-28 16:25:00 +00:00
aider: Made -v
a short option for --verbose
.
# Context: USER: make -v short for --verbose ASSISTANT: To make `-v` a short option for `--verbose`, you can modify the `aider/main.py` file. Here's the change: ```python aider/main.py <<<<<<< ORIGINAL parser.add_argument( "--verbose", action="store_true", help="Enable verbose output", default=False, ) ======= parser.add_argument( "-v", "--verbose", action="store_true", help="Enable verbose output", default=False, ) >>>>>>> UPDATED ```
This commit is contained in:
parent
7e6ea0660d
commit
c441906a22
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ def main(args=None, input=None, output=None):
|
|||
default=False,
|
||||
)
|
||||
parser.add_argument(
|
||||
"--verbose",
|
||||
"-v", "--verbose",
|
||||
action="store_true",
|
||||
help="Enable verbose output",
|
||||
default=False,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue