Evan
Evan
You can see a bit more of the discussion on this in #133. In the case where you're only using `nargs='?'`, I think you're right.
It does. Please open a new issue if you have problems that are not related to this feature request.
Did you enable global completion? The other two are likely being handled by that and something is going wrong for the one you registered explicitly. Try setting `_ARC_DEBUG` and see...
When you say "./my-awesome-script.py and /path/to/my-awesome-script.py will be completed" do you mean they are completing file names? If so, this is the default behavior of your shell for anything that...
Sorry for not getting back to you sooner, I didn't notice you had edited your post. I think you may have misinterpreted the readme in your initial post - it...
It does allow you to register the path of a script if you want to, but then that's the only thing you'll be able to complete. `eval "$(register-python-argcomplete /path/to/my-awesome-script.py)"` would...
@DerWeh I've made an attempt at rewording this to reduce confusion. I also removed the `.py` extensions from the examples to more strongly indicate what I think the intended usage...
You can kind of fake this, but it may get messy if more than one completer is printing help. ``` #!/usr/bin/env python import os import argparse import argcomplete def completer(*args,...
Hi guys, I tackled a similar problem with [defopt](https://github.com/evanunderscore/defopt). I thought I had done my homework before writing yet another argument parser, but apparently I missed argh at the time....
Closing this as resolved, thanks for following up. The regression in global completion should be handled in #445.