diff options
author | Robby Russell <robby@planetargon.com> | 2011-12-26 10:45:53 -0800 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2011-12-26 10:45:53 -0800 |
commit | 3e9493fb301b7d34bb6861787d97067ec9365268 (patch) | |
tree | 95541bb515a5c28460450410f1ed83c6d2e2dbcc | |
parent | 6bab89a47912b0ff822974788acb4daf3cb280ab (diff) | |
parent | a2afccae194470e71dd256b594964ddfe0e5c221 (diff) | |
download | zsh-3e9493fb301b7d34bb6861787d97067ec9365268.tar.gz zsh-3e9493fb301b7d34bb6861787d97067ec9365268.tar.bz2 zsh-3e9493fb301b7d34bb6861787d97067ec9365268.zip |
Merge pull request #679 from ornicar/official
Add yaourt --sucre alias in archlinux plugin
-rw-r--r-- | plugins/archlinux/archlinux.plugin.zsh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/archlinux/archlinux.plugin.zsh b/plugins/archlinux/archlinux.plugin.zsh index b5e519036..294dc5354 100644 --- a/plugins/archlinux/archlinux.plugin.zsh +++ b/plugins/archlinux/archlinux.plugin.zsh @@ -9,6 +9,7 @@ if [[ -x `which yaourt` ]]; then alias yaconf='yaourt -C' # Fix all configuration files with vimdiff # Pacman - https://wiki.archlinux.org/index.php/Pacman_Tips alias yaupg='yaourt -Syu' # Synchronize with repositories before upgrading packages that are out of date on the local system. + alias yasu='yaourt --sucre' # Same as yaupg, but without confirmation alias yain='yaourt -S' # Install specific package(s) from the repositories alias yains='yaourt -U' # Install specific package not from the repositories but from a file alias yare='yaourt -R' # Remove the specified package(s), retaining its configuration(s) and required dependencies |