mirror of
https://github.com/fish-shell/fish-shell
synced 2024-11-15 01:17:45 +00:00
0e0d63c0df
"To assume" and such. It doesn't check $SHELL, so it might have some other automagic that can fail (probably still because of the login shell, but I have no idea). Override the special variable that click-completion (https://github.com/click-contrib/click-completion) uses to force it instead. Really fixes #6454. [ci skip]
5 lines
228 B
Fish
5 lines
228 B
Fish
if command -sq pipenv
|
|
# pipenv determines which completions to print via some automagic that might not be perfect.
|
|
# Force it to be correct.
|
|
_PIPENV_COMPLETE=source-fish pipenv --completion 2>/dev/null | source
|
|
end
|