mirror of
https://github.com/ViViDboarder/shoestrap.git
synced 2024-11-21 23:16:33 +00:00
Fix stderr on port completion
This commit is contained in:
parent
0fd479570a
commit
107a929c69
@ -17,23 +17,23 @@ function __fish_port_using_command
|
|||||||
end
|
end
|
||||||
|
|
||||||
function __fish_port_list
|
function __fish_port_list
|
||||||
port list | cut -d' ' -f1
|
port list 2> /dev/null | cut -d' ' -f1
|
||||||
end
|
end
|
||||||
|
|
||||||
function __fish_port_inactive
|
function __fish_port_inactive
|
||||||
port echo inactive | sed 's/ \{1,\}/ /g'
|
port echo inactive 2> /dev/null | sed 's/ \{1,\}/ /g'
|
||||||
end
|
end
|
||||||
|
|
||||||
function __fish_port_active
|
function __fish_port_active
|
||||||
port echo active | sed 's/ \{1,\}/ /g'
|
port echo active 2> /dev/null | sed 's/ \{1,\}/ /g'
|
||||||
end
|
end
|
||||||
|
|
||||||
function __fish_port_installed
|
function __fish_port_installed
|
||||||
port echo installed | sed 's/ \{1,\}/ /g'
|
port echo installed 2> /dev/null | sed 's/ \{1,\}/ /g'
|
||||||
end
|
end
|
||||||
|
|
||||||
function __fish_port_outdated_formulas
|
function __fish_port_outdated_formulas
|
||||||
port echo outdated | cut -d' ' -f1
|
port echo outdated 2> /dev/null | cut -d' ' -f1
|
||||||
end
|
end
|
||||||
|
|
||||||
set -l pseudo_portnames = 'all current active inactive actintact installed uninstalled outdated obsolete requested unrequested leaves'
|
set -l pseudo_portnames = 'all current active inactive actintact installed uninstalled outdated obsolete requested unrequested leaves'
|
||||||
|
Loading…
Reference in New Issue
Block a user