-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix bad entry point for completion #4014
Conversation
Hello! I am an automated bot and I have noticed that this pull request is not currently able to be merged. If you are able to either merge the |
Hi @toxinu! Could you rebase this PR on master? :) |
7272414
to
de581b8
Compare
@pradyunsg Done! 😄 |
Thanks! ^.^ This should probably be mentioned in the news file. Could you add a news fragment to this PR? Edit: Details on that are available here. |
@@ -37,7 +38,7 @@ | |||
set -lx PIP_AUTO_COMPLETE 1 | |||
string split \\ -- (eval $COMP_WORDS[1]) | |||
end | |||
complete -fa "(__fish_complete_pip)" -c pip | |||
complete -fa "(__fish_complete_pip)" -c %(pip_entry_point)s |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Could you put 2 %%
symbols here (and above) so that it is possible to club together the formatting into one?
Basically, the delta at 84-86 would be reset and the base completion formatting would get a new key; meaning that the formatting of the arguments then only happens in one location which would probably look neater. :)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
nvm.
Hello! I am an automated bot and I have noticed that this pull request is not currently able to be merged. If you are able to either merge the |
This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs. |
According to #3997, completion template now use entry point used to run current command.
Edit: Fixes #3997