Results 74 comments of Evan

Thanks for the report. Can you please export `_ARC_DEBUG=1` and paste the output of attempted tab completion?

Are you able to try again with the change in #342?

No problem at all. I'm not in any rush, just trying to help resolve your issue whenever you have the time.

These are the instructions I have previously used to get this working with zsh: https://github.com/kislyuk/argcomplete/issues/10#issuecomment-19369876 It's possible that this is no longer working in newer versions of zsh. Which version...

This isn't a bug. In the first case, Bash is displaying the completions you supplied, and then redrawing the prompt. In the second case, Bash has determined that neither of...

My main hesitation is that the project is primarily intended to integrate with Bash completion rather than extend it. I was assuming the implementation would be complex, but if it...

This is expected; you cannot open a file descriptor if it doesn't exist. The shell wrappers explicitly create and read from file descriptor 8. We do this because argcomplete lives...

That looks like an old wrapper. What version of argcomplete are you running? How did you generate it? You can try manually removing `1>/dev/null 2>/dev/null` from the line where it...

Thanks for the detailed notes @yarikoptic. Glad you managed to find the source of your problem! Embedding the argcomplete version in the generated wrapper is a good idea, though currently...

For what it's worth, the penalty will only be paid if the thing you're completing is a file with a shebang line for Python. In the case that we don't...