From 1029549b6aa2a6b640c184e3f0fbaae83a7a202c Mon Sep 17 00:00:00 2001 From: Ryuhei Yoshida Date: Tue, 12 Dec 2023 16:06:10 +0900 Subject: [PATCH 1/2] :completions: Add brew-bundle-install --- Library/Homebrew/completions/fish.erb | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Homebrew/completions/fish.erb b/Library/Homebrew/completions/fish.erb index 2d75db2d5965d..c95de4b6db1dd 100644 --- a/Library/Homebrew/completions/fish.erb +++ b/Library/Homebrew/completions/fish.erb @@ -228,6 +228,7 @@ __fish_brew_complete_arg 'bundle; and not __fish_brew_opt --file --global ' -l global -d "Use \$HOME/.Brewfile" +__fish_brew_complete_sub_cmd 'bundle' 'install' "Install and upgrade (by default) all dependencies from the Brewfile." __fish_brew_complete_sub_cmd 'bundle' 'dump' "Write all installed casks/formulae/taps into a Brewfile" __fish_brew_complete_sub_cmd 'bundle' 'cleanup' "Uninstall all dependencies not listed in a Brewfile" __fish_brew_complete_sub_cmd 'bundle' 'check' "Check if all dependencies are installed in a Brewfile" From 64fc295e38a2ff3f528d8d3c4b25930e6ff6ceeb Mon Sep 17 00:00:00 2001 From: Ryuhei Yoshida Date: Tue, 12 Dec 2023 16:06:37 +0900 Subject: [PATCH 2/2] :completions: Add brew-bundle-list --- Library/Homebrew/completions/fish.erb | 1 + 1 file changed, 1 insertion(+) diff --git a/Library/Homebrew/completions/fish.erb b/Library/Homebrew/completions/fish.erb index c95de4b6db1dd..95976df051594 100644 --- a/Library/Homebrew/completions/fish.erb +++ b/Library/Homebrew/completions/fish.erb @@ -233,6 +233,7 @@ __fish_brew_complete_sub_cmd 'bundle' 'dump' "Write all installed casks/formu __fish_brew_complete_sub_cmd 'bundle' 'cleanup' "Uninstall all dependencies not listed in a Brewfile" __fish_brew_complete_sub_cmd 'bundle' 'check' "Check if all dependencies are installed in a Brewfile" __fish_brew_complete_sub_cmd 'bundle' 'exec' "Run an external command in an isolated build environment" +__fish_brew_complete_sub_cmd 'bundle' 'list' "List all dependencies present in the Brewfile." # --force is available only for the dump/cleanup subcommands __fish_brew_complete_sub_arg 'bundle' 'dump cleanup' -l force -d "Uninstall dependencies or overwrite an existing Brewfile"