Remove --use-gcc and friends from completion scripts

This commit is contained in:
Jack Nagel 2013-11-03 11:45:26 -06:00
parent 4e2c45f5d1
commit faa77e8283
2 changed files with 0 additions and 9 deletions

View File

@ -207,9 +207,6 @@ _brew_install ()
--force --force
--git --git
--HEAD --HEAD
--use-clang
--use-gcc
--use-llvm
" "
else else
__brewcomp " __brewcomp "
@ -221,9 +218,6 @@ _brew_install ()
--HEAD --HEAD
--ignore-dependencies --ignore-dependencies
--interactive --interactive
--use-clang
--use-gcc
--use-llvm
--verbose --verbose
$(brew options --compact "$prv" 2>/dev/null) $(brew options --compact "$prv" 2>/dev/null)
" "

View File

@ -137,9 +137,6 @@ complete -c brew -s f -l force -n '__fish_complete_brew_command force' -d "Insta
complete -c brew -s i -l interactive -n '__fish_complete_brew_command install' -d "Open a subshell to install manually" complete -c brew -s i -l interactive -n '__fish_complete_brew_command install' -d "Open a subshell to install manually"
complete -c brew -l git -n '__fish_complete_brew_command install' -d 'Create a git repo (useful for making patches)' complete -c brew -l git -n '__fish_complete_brew_command install' -d 'Create a git repo (useful for making patches)'
complete -c brew -l fresh -n '__fish_complete_brew_command install' -d "Do not reuse options from previous installs" complete -c brew -l fresh -n '__fish_complete_brew_command install' -d "Do not reuse options from previous installs"
complete -c brew -l use-clang -n '__fish_complete_brew_command install' -d "Attempt to compile using Clang"
complete -c brew -l use-llvm -n '__fish_complete_brew_command install' -d "Attempt to compile using LLVM"
complete -c brew -l use-gcc -n '__fish_complete_brew_command install' -d "Attempt to compile using GCC"
complete -c brew -l build-from-source -n '__fish_complete_brew_command install' -d "Compile from source even if a bottle is provided" complete -c brew -l build-from-source -n '__fish_complete_brew_command install' -d "Compile from source even if a bottle is provided"
complete -c brew -l devel -n '__fish_complete_brew_command install' -d "Install the development version" complete -c brew -l devel -n '__fish_complete_brew_command install' -d "Install the development version"
complete -c brew -l HEAD -n '__fish_complete_brew_command install' -d "Install the HEAD version" complete -c brew -l HEAD -n '__fish_complete_brew_command install' -d "Install the HEAD version"