mirror of
https://github.com/oh-my-fish/oh-my-fish.git
synced 2025-02-03 04:57:30 +08:00
49dda5c2f7
This updates omf plugin to new architecture, moving functions to `functions` directory. It also revamps the separation of concerns between CLI and underlying implementations, organizing them into directories, whose are autoloaded in plugin startup.
24 lines
558 B
Fish
24 lines
558 B
Fish
function omf.cli.remove -a name
|
|
switch (count $argv)
|
|
case 1
|
|
omf.packages.remove $name
|
|
set code $status
|
|
|
|
switch $code
|
|
case 0
|
|
echo (omf::em)"$name successfully removed."(omf::off)
|
|
case 1
|
|
echo (omf::err)"$name could not be removed."(omf::off) 1^&2
|
|
case 2
|
|
echo (omf::err)"$name could not be found."(omf::off) 1^&2
|
|
end
|
|
|
|
return $code
|
|
|
|
case '*'
|
|
echo (omf::err)"Invalid number of arguments"(omf::off) 1^&2
|
|
echo "Usage: omf remove "(omf::em)"<name>"(omf::off) 1^&2
|
|
return $OMF_INVALID_ARG
|
|
end
|
|
end
|