diff --git a/share/completions/pip.fish b/share/completions/pip.fish new file mode 100644 index 000000000..52332f599 --- /dev/null +++ b/share/completions/pip.fish @@ -0,0 +1,4 @@ +if command -sq pip + eval (pip completion --fish) +end + diff --git a/share/completions/pip2.fish b/share/completions/pip2.fish new file mode 100644 index 000000000..a0297f081 --- /dev/null +++ b/share/completions/pip2.fish @@ -0,0 +1,3 @@ +if command -sq pip2 + eval (pip2 completion --fish) +end diff --git a/share/completions/pip3.fish b/share/completions/pip3.fish new file mode 100644 index 000000000..25b1918e3 --- /dev/null +++ b/share/completions/pip3.fish @@ -0,0 +1,3 @@ +if command -sq pip3 + eval (pip3 completion --fish) +end diff --git a/share/completions/pipenv.fish b/share/completions/pipenv.fish new file mode 100644 index 000000000..fce46933c --- /dev/null +++ b/share/completions/pipenv.fish @@ -0,0 +1,3 @@ +if command -sq pipenv + eval (pipenv --completion) +end