diff options
author | Marc Cornellà <marc@mcornella.com> | 2023-10-12 11:46:49 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-10-12 11:46:49 +0200 |
commit | 7329b2fbb1787651d4900d5ef280b926c5696c01 (patch) | |
tree | c56e216035a0f45de2d8a65e44da998063bccd67 | |
parent | 5743198e0ed5de137b4aa1b948cf4c82b02bdd8e (diff) | |
download | zsh-7329b2fbb1787651d4900d5ef280b926c5696c01.tar.gz zsh-7329b2fbb1787651d4900d5ef280b926c5696c01.tar.bz2 zsh-7329b2fbb1787651d4900d5ef280b926c5696c01.zip |
docs(debian): clarify override behavior for `apt_pref` and `apt_upgr`
Fixes #11959
-rw-r--r-- | plugins/debian/README.md | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/plugins/debian/README.md b/plugins/debian/README.md index 1db534f13..6835ad65c 100644 --- a/plugins/debian/README.md +++ b/plugins/debian/README.md @@ -13,7 +13,12 @@ plugins=(... debian) - `$apt_pref`: use aptitude or apt if installed, fallback is apt-get. - `$apt_upgr`: use upgrade or safe-upgrade (for aptitude). -Set `$apt_pref` and `$apt_upgr` to whatever command you want (before sourcing Oh My Zsh) to override this behavior. +Set **both** `$apt_pref` and `$apt_upgr` to whatever command you want (before sourcing Oh My Zsh) to override this behavior, e.g.: + +```sh +apt_pref='apt' +apt_upgr='full-upgrade' +``` ## Common Aliases |