Merge pull request #10459 from muneebmahmed/fix-fish-completion
Fix fish shell completion for upgrade
This commit is contained in:
commit
ebcd56cc62
@ -119,7 +119,7 @@ function __fish_brew_suggest_formulae_installed
|
|||||||
end
|
end
|
||||||
|
|
||||||
function __fish_brew_suggest_formulae_outdated -d "List of outdated formulae with the information about potential upgrade"
|
function __fish_brew_suggest_formulae_outdated -d "List of outdated formulae with the information about potential upgrade"
|
||||||
brew outdated --verbose \
|
brew outdated --formula --verbose \
|
||||||
# replace first space with tab to make the following a description in the completions list:
|
# replace first space with tab to make the following a description in the completions list:
|
||||||
| string replace -r '\s' '\t'
|
| string replace -r '\s' '\t'
|
||||||
end
|
end
|
||||||
@ -145,7 +145,7 @@ function __fish_brew_suggest_casks_installed -d "Lists installed casks"
|
|||||||
end
|
end
|
||||||
|
|
||||||
function __fish_brew_suggest_casks_outdated -d "Lists outdated casks with the information about potential upgrade"
|
function __fish_brew_suggest_casks_outdated -d "Lists outdated casks with the information about potential upgrade"
|
||||||
brew cask outdated --verbose \
|
brew outdated --cask --verbose \
|
||||||
# replace first space with tab to make the following a description in the completions list:
|
# replace first space with tab to make the following a description in the completions list:
|
||||||
| string replace -r '\s' '\t'
|
| string replace -r '\s' '\t'
|
||||||
end
|
end
|
||||||
|
|||||||
@ -106,7 +106,7 @@ function __fish_brew_suggest_formulae_installed
|
|||||||
end
|
end
|
||||||
|
|
||||||
function __fish_brew_suggest_formulae_outdated -d "List of outdated formulae with the information about potential upgrade"
|
function __fish_brew_suggest_formulae_outdated -d "List of outdated formulae with the information about potential upgrade"
|
||||||
brew outdated --verbose \
|
brew outdated --formula --verbose \
|
||||||
# replace first space with tab to make the following a description in the completions list:
|
# replace first space with tab to make the following a description in the completions list:
|
||||||
| string replace -r '\s' '\t'
|
| string replace -r '\s' '\t'
|
||||||
end
|
end
|
||||||
@ -132,7 +132,7 @@ function __fish_brew_suggest_casks_installed -d "Lists installed casks"
|
|||||||
end
|
end
|
||||||
|
|
||||||
function __fish_brew_suggest_casks_outdated -d "Lists outdated casks with the information about potential upgrade"
|
function __fish_brew_suggest_casks_outdated -d "Lists outdated casks with the information about potential upgrade"
|
||||||
brew cask outdated --verbose \
|
brew outdated --cask --verbose \
|
||||||
# replace first space with tab to make the following a description in the completions list:
|
# replace first space with tab to make the following a description in the completions list:
|
||||||
| string replace -r '\s' '\t'
|
| string replace -r '\s' '\t'
|
||||||
end
|
end
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user