Evan
Evan
We're already replacing `/` with `_` for fish, perhaps we should apply a similar change to all shells? https://github.com/kislyuk/argcomplete/blob/95da43507eaed949bc63539052a4c8d40d8bb98a/argcomplete/shell_integration.py#L165-L177
The problem appears to be based on which order things are in `orderedContent()`. For example, if in my example script you replace `m = element(a='a', b='b')` with `m = element();...
You shouldn't need to use `--external-argcomplete-script` - there is special logic in global completion to unwrap the pip wrappers and work out if they point to something that can be...
If your script was executable as `mcq` then that is all that should matter; argcomplete literally executes `mcq` in order to generate the completions. It's likely there was some other...
For reference, the commit that removed it is here: https://github.com/kislyuk/argcomplete/commit/483a7454e33b7e4aa32d09aa6f11002968878e61 This flag should be added back and ideally also implemented in zsh (should be as simple as conditionally calling `_default`...
This was potentially fixed in #463 or is related to #445. Can you give more information about how you have installed completion (either `register-python-argcomplete` or `activate-global-python-argcomplete`)? Can you also test...
Napoleon works by transforming docstrings, so this may work out of the box if you put `sphinx.ext.napoleon` before `sphinx_autodoc_annotation`. I haven't tested it, but the same thing works for [sphinx-autodoc-typehints](https://github.com/agronholm/sphinx-autodoc-typehints).
After some more searching, I've found https://github.com/agronholm/sphinx-autodoc-typehints, which appears to work correctly for my use cases. Given the discussion on #5, perhaps you could consider updating the readme to point...
We also have other long-standing issues related to the use of plain scripts that would probably be fixed by this. I'm not up to date with pyproject.toml but a long...
Are you able to whittle your example down to the minimum code required to trigger the issue you're seeing? Once you've done that, you should be able to `export _ARC_DEBUG=1`...