m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-19 17:13:42 -05:00

Mnemonic should say “[P]ackage”, not “[Plugin]"

neovrnaz
2021-12-09 16:51:23 -07:00
parent 9fc712900e
commit bc06cac032

@@ -986,7 +986,7 @@ fzfimg.sh --preview-window right:80%
```sh ```sh
# Install (one or multiple) selected application(s) # Install (one or multiple) selected application(s)
# using "brew search" as source input # using "brew search" as source input
# mnemonic [B]rew [I]nstall [P]lugin # mnemonic [B]rew [I]nstall [P]ackage
bip() { bip() {
local inst=$(brew search “$@" | fzf -m) local inst=$(brew search “$@" | fzf -m)
@@ -1000,7 +1000,7 @@ bip() {
```sh ```sh
# Update (one or multiple) selected application(s) # Update (one or multiple) selected application(s)
# mnemonic [B]rew [U]pdate [P]lugin # mnemonic [B]rew [U]pdate [P]ackage
bup() { bup() {
local upd=$(brew leaves | fzf -m) local upd=$(brew leaves | fzf -m)
@@ -1013,7 +1013,7 @@ bup() {
```sh ```sh
# Delete (one or multiple) selected application(s) # 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() { bcp() {
local uninst=$(brew leaves | fzf -m) local uninst=$(brew leaves | fzf -m)