You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This might be related to #504 but I think it is something else: when calling the script like this python ./foo.py, I get duplicate suggestions. Of course it could also be an issue with zsh or my setup of it, so I hope other people can confirm it they also see this.
To reproduce
Test environment:
Ubuntu 24.04
Python 3.12.3
argcomplete 3.1.4-1ubuntu0.1 (this is 3.1.4 with a patch back-ported from 3.3.0 to make it compatible with Python 12.3)
This might be related to #504 but I think it is something else: when calling the script like this
python ./foo.py
, I get duplicate suggestions. Of course it could also be an issue with zsh or my setup of it, so I hope other people can confirm it they also see this.To reproduce
Test environment:
I tested this with the following file
foo.py
Suggestions for the last option show up twice in the generated list:
Output with
_ARC_DEBUG=1
The suggestions are generated once with
WORDS: ['python', './foo.py']
and once withWORDS: ['./foo.py']
where in both cases,LINE: 'python ./foo.py '
.The text was updated successfully, but these errors were encountered: