Make comment easier to read.

This commit is contained in:
Randall Wood 2017-08-13 10:58:58 -04:00 committed by GitHub
parent 3396387b52
commit d7baf81373

View File

@ -563,7 +563,7 @@ _brew() {
if [[ "$i" -eq "$COMP_CWORD" ]] if [[ "$i" -eq "$COMP_CWORD" ]]
then then
# Do not auto-complete "*instal" abbreviations for "*install" commands. # Do not auto-complete "*instal" or "*uninstal" aliases for "*install" commands.
# Prefix newline to prevent not checking the first command. # Prefix newline to prevent not checking the first command.
local cmds=$'\n'"$(brew commands --quiet --include-aliases | grep -v instal$)" local cmds=$'\n'"$(brew commands --quiet --include-aliases | grep -v instal$)"
__brewcomp "${cmds}" __brewcomp "${cmds}"