-
Notifications
You must be signed in to change notification settings - Fork 149
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Implement argcomplete shell completion #1082
Comments
I would not consider this high priority. I only opened this issue because I ran my mouth in a comment on the shtab issue and a maintainer asked me to open one. These days, most of my use of
I haven't implemented |
Small correction - distributions usually don't install to That said, if you have a PR I would be quite happy to test the argcomplete approach. |
Simplified for brevity. Without a package, the admin is dealing with that directory. With a package they don't need to care about how it's done. But sure, I'll update the wording. |
While the previously implemented
shtab
completion is faster and more secure, it also requires installing a/etc/bash_completion.d/*
for each tool or application. Alternatively, the completion provided by argcomplete requires installing only one/etc/bash_completion.d/*
file, many distributions and OSes have packages that do the equivalent, and argcomplete itself provides a convenience script to install the file. From then on any python tool or application that implements argcomplete gets completion.Confirm that
shtab
andargcomplete
can co-exist and implement argcomplete also.The text was updated successfully, but these errors were encountered: