-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
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
Fix bash completion on chained command arguments #771
Fix bash completion on chained command arguments #771
Conversation
@Gig77 Feel free to see if this solves your issue. |
It does, thanks a lot! |
@untitaker I'd love to get your thoughts on this. |
A lot of unrelated things are in this PR, I'm unsure if we want |
@untitaker good call. I broke this into #772, #773, #774, and #775. I think |
not a huge fan of this, but we'll see when we get to test it. I was thinking more about monkeypatching |
Enables bash completion on chained command arguments, allows completions with spaces in them, makes bash completion about 10ms faster by exiting python using os._exit() rather than sys.exit(), and updates documentation that was incorrect from PR #755
Fixes #754
Fixes #769