-
I defined Any help would be appreciated. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi @shanehh, Could you describe how is is not working? Which shell type are you trying to enable completions for? The issue could be related to the fact that the completion script installed in your shell needs to call Since the completion requires poe to be accessible, the most reliable solution is to ensure it's installed into your user environment via pip or pipx. Though if you want to try another solution you can always modify the completion script the poe outputs, to change where it looks for the poe executable when calling |
Beta Was this translation helpful? Give feedback.
Hi @shanehh,
Could you describe how is is not working? Which shell type are you trying to enable completions for?
The issue could be related to the fact that the completion script installed in your shell needs to call
poe _list_tasks
to get the present tasks, and might not be able to find the poe executable with the alias!Since the completion requires poe to be accessible, the most reliable solution is to ensure it's installed into your user environment via pip or pipx. Though if you want to try another solution you can always modify the completion script the poe outputs, to change where it looks for the poe executable when calling
poe _list_tasks
.