1
0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2026-02-13 05:59:46 +08:00

Compare commits

..

3 Commits

Author SHA1 Message Date
Sandesh Pyakurel
772b41ea5a
chore(zsh-navigation-tools): fix typo (#11960) 2023-10-12 16:24:40 +02:00
Marc Cornellà
7329b2fbb1
docs(debian): clarify override behavior for apt_pref and apt_upgr
Fixes #11959
2023-10-12 11:46:49 +02:00
Preston Button
5743198e0e
docs(aliases): fix typo (#11958) 2023-10-12 10:32:48 +02:00
3 changed files with 8 additions and 3 deletions

View File

@ -17,7 +17,7 @@ Requirements: Python needs to be installed.
- `als`: show all aliases by group - `als`: show all aliases by group
- `als -h/--help`: print help mesage - `als -h/--help`: print help message
- `als <keyword(s)>`: filter and highlight aliases by `<keyword>` - `als <keyword(s)>`: filter and highlight aliases by `<keyword>`

View File

@ -13,7 +13,12 @@ plugins=(... debian)
- `$apt_pref`: use aptitude or apt if installed, fallback is apt-get. - `$apt_pref`: use aptitude or apt if installed, fallback is apt-get.
- `$apt_upgr`: use upgrade or safe-upgrade (for aptitude). - `$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 ## Common Aliases

View File

@ -467,7 +467,7 @@ while (( 1 )); do
elif [ -n "$keypad" ]; then elif [ -n "$keypad" ]; then
final_key="$keypad" final_key="$keypad"
else else
_nlist_status_msg "Inproper input detected" _nlist_status_msg "Improper input detected"
zcurses refresh main inner zcurses refresh main inner
fi fi