mirror of
https://github.com/Aider-AI/aider.git
synced 2025-06-04 11:45:00 +00:00
updated ctags help
This commit is contained in:
parent
81f3c7ac7e
commit
ec933f4417
1 changed files with 6 additions and 3 deletions
|
@ -105,12 +105,15 @@ def main(args=None, input=None, output=None):
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--ctags",
|
"--ctags",
|
||||||
type=lambda x: (str(x).lower() == 'true'),
|
type=lambda x: (str(x).lower() == "true"),
|
||||||
nargs='?',
|
nargs="?",
|
||||||
const=True,
|
const=True,
|
||||||
default=None,
|
default=None,
|
||||||
env_var=f"{env_prefix}CTAGS",
|
env_var=f"{env_prefix}CTAGS",
|
||||||
help="Add ctags to the chat to help GPT understand the codebase (default: None)",
|
help=(
|
||||||
|
"Add ctags to the chat to help GPT understand the codebase (default: check for ctags"
|
||||||
|
" executable)"
|
||||||
|
),
|
||||||
)
|
)
|
||||||
parser.add_argument(
|
parser.add_argument(
|
||||||
"--yes",
|
"--yes",
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue