aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Contributions/brew_fish_completion.fish
AgeCommit message (Collapse)Author
2015-03-10Remove fish completionMisty De Meo
fish already ships more comprehensive completions which are enabled by default. Closes Homebrew/homebrew#37582.
2014-11-16Remove more references to removed external commandsJack Nagel
2014-07-05Remove remaining references to "--fresh"Jack Nagel
This option was removed in 8cdf4d8ebf439eb9a9ffcaa0e455ced9459e1e41 because it did not do anything.
2014-04-24Remove slow tab completion for `brew tap`Jack Nagel
This requires hitting the network, which makes the first invocation slow. The results are inaccurate as it only pulls down the first page of results. It is also prone to false-positives. A better implementation is welcome, but in the years since I wrote this code I can't think of a single time where I found it useful.
2013-11-03Remove --use-gcc and friends from completion scriptsJack Nagel
2013-03-30brew-pin: prevent selected formulae from upgrade.Simon Sigurdhsson
* Added `pin` et. al. to manpage. * Added `brew pin` to `brew.1` * Added `brew unpin` to `brew.1` * Added `brew list --pinned` to `brew.1` * Added information about frozen formulae to `brew upgrade` in `brew.1` * Added `pin` et.al. to completion scripts. * Unpin formulae when uninstalling them * Unpin and re-pin formulae when upgrading (avoids stale symlink) References Homebrew/homebrew#18386. Closes Homebrew/homebrew#18515. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-02-18Rename Library/Contributions/cmds -> cmd.Mike McQuaid
2012-11-13fish completion: complete formula optionsMisty De Meo
2012-08-09fish completion: Remove dupe lines, fix commandsMisty De Meo
2012-07-25Revamp fish completionMisty De Meo
The fish completion hadn't been updated since 2009; this brings it up to date. Changes include: * Create the list of commands the same way as in bash completion * Add every option for every current command, with descriptions * Fixes a bug in fish_complete_brew_command * Allow fish_complete_brew_command to take multiple commands * Expand functionality of fish_complete_homebrew_formula to support other commands and taps, and change name to reflect new functionality Tested on fishfish, but should be compatible with fish.
2009-09-16Add fish completions for the brew binaryDarcy Laycock
See Library/Contributions