From bc06cac0322d2f25a013e3cc6bc10f7cd03ba702 Mon Sep 17 00:00:00 2001 From: neovrnaz <60867530+neovrnaz@users.noreply.github.com> Date: Thu, 9 Dec 2021 16:51:23 -0700 Subject: [PATCH] =?UTF-8?q?Mnemonic=20should=20say=20=E2=80=9C[P]ackage?= =?UTF-8?q?=E2=80=9D,=20not=20=E2=80=9C[Plugin]"?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Examples.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Examples.md b/Examples.md index 9c399a7..63398f4 100644 --- a/Examples.md +++ b/Examples.md @@ -986,7 +986,7 @@ fzfimg.sh --preview-window right:80% ```sh # Install (one or multiple) selected application(s) # using "brew search" as source input -# mnemonic [B]rew [I]nstall [P]lugin +# mnemonic [B]rew [I]nstall [P]ackage bip() { local inst=$(brew search “$@" | fzf -m) @@ -1000,7 +1000,7 @@ bip() { ```sh # Update (one or multiple) selected application(s) -# mnemonic [B]rew [U]pdate [P]lugin +# mnemonic [B]rew [U]pdate [P]ackage bup() { local upd=$(brew leaves | fzf -m) @@ -1013,7 +1013,7 @@ bup() { ```sh # Delete (one or multiple) selected application(s) -# mnemonic [B]rew [C]lean [P]lugin (e.g. uninstall) +# mnemonic [B]rew [C]lean [P]ackage (e.g. uninstall) bcp() { local uninst=$(brew leaves | fzf -m)