mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-19 21:41:07 +01:00
Merge pull request #2999 from nicorevin/master
fix paclist() for non-english locales
This commit is contained in:
commit
3e88e53ee7
1 changed files with 1 additions and 1 deletions
|
@ -63,7 +63,7 @@ alias pacmir='sudo pacman -Syy' # Force refresh of all package li
|
||||||
|
|
||||||
# https://bbs.archlinux.org/viewtopic.php?id=93683
|
# https://bbs.archlinux.org/viewtopic.php?id=93683
|
||||||
paclist() {
|
paclist() {
|
||||||
sudo pacman -Qei $(pacman -Qu|cut -d" " -f 1)|awk ' BEGIN {FS=":"}/^Name/{printf("\033[1;36m%s\033[1;37m", $2)}/^Description/{print $2}'
|
LC_ALL=C pacman -Qei $(pacman -Qu|cut -d" " -f 1)|awk ' BEGIN {FS=":"}/^Name/{printf("\033[1;36m%s\033[1;37m", $2)}/^Description/{print $2}'
|
||||||
}
|
}
|
||||||
|
|
||||||
alias paclsorphans='sudo pacman -Qdt'
|
alias paclsorphans='sudo pacman -Qdt'
|
||||||
|
|
Loading…
Reference in a new issue