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:
Paul Gauthier 2023-05-19 10:57:59 -07:00
parent 7e6ea0660d
commit c441906a22

View file

@ -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,