Browse Source

feat(pipenv): add pupd alias (#11616)

Eddie Romanov 1 year ago
parent
commit
bd5ebba834
2 changed files with 2 additions and 0 deletions
  1. 1 0
      plugins/pipenv/README.md
  2. 1 0
      plugins/pipenv/pipenv.plugin.zsh

+ 1 - 0
plugins/pipenv/README.md

@@ -23,6 +23,7 @@ This plugin provides some features to simplify the use of Pipenv while working o
   - `psh` is aliased to `pipenv shell`
   - `psy` is aliased to `pipenv sync`
   - `pu` is aliased to `pipenv uninstall`
+  - `pupd` is aliased to `pipenv update`
   - `pwh` is aliased to `pipenv --where`
   - `pvenv` is aliased to `pipenv --venv`
   - `ppy` is aliased to `pipenv --py`

+ 1 - 0
plugins/pipenv/pipenv.plugin.zsh

@@ -47,6 +47,7 @@ alias prun="pipenv run"
 alias psh="pipenv shell"
 alias psy="pipenv sync"
 alias pu="pipenv uninstall"
+alias pupd="pipenv update"
 alias pwh="pipenv --where"
 alias pvenv="pipenv --venv"
 alias ppy="pipenv --py"