diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2021-07-26 01:39:14 +0100 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2021-07-26 01:39:14 +0100 |
commit | b3f78e588b55e8676997377b14868689986b12a9 (patch) | |
tree | f99511ee6c5fa07e18c4d0e1f3131690cd44dd6b /Shell/.zshrc | |
parent | d59c38f1342b061d7e71b4e565948436ca676780 (diff) | |
download | dotfiles-b3f78e588b55e8676997377b14868689986b12a9.tar.gz dotfiles-b3f78e588b55e8676997377b14868689986b12a9.tar.bz2 dotfiles-b3f78e588b55e8676997377b14868689986b12a9.zip |
(Emacs|Scripts)~minor edits
(Emacs)~changed some descriptions, formatting, edits of assigned
functions
(Scripts)~allow psearch to use all arguments supplied rather than just
the first one (pacman -Ss actually greedily consumes all arguments
given as part of the search)
Diffstat (limited to 'Shell/.zshrc')
-rw-r--r-- | Shell/.zshrc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Shell/.zshrc b/Shell/.zshrc index 117af9a..15df5f7 100644 --- a/Shell/.zshrc +++ b/Shell/.zshrc @@ -28,7 +28,7 @@ ef () { } psearch () { - pacman -Ss $1 | less + pacman -Ss $@ | less } ### Git aliases |