Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

https://github.com/srijanshetty/zsh-pip-completion

ZSH completions for pip
https://github.com/srijanshetty/zsh-pip-completion

autocomplete autocomplete-suggestions completions dotfiles-linux dotfiles-macos pip python zsh

Last synced: about 2 months ago
JSON representation

ZSH completions for pip

Lists

README

        

Advanced pip completion for zsh
===============================

Simple completion function that can complete PyPI package names.

Installation
============

### Manual Installation
1. Copy `_pip` file into `~/.zshfuncs` folder.
2. Add this folder to your functions path before loading completion in your `~/.zshrc`.

Example:

# completion
fpath=(~/.zshfuncs $fpath)
autoload -U compinit
compinit

### Antigen
1. Just run the following command

```shell
antigen bundle srijanshetty/zsh-pip-completion
```