mirror of
https://github.com/oh-my-fish/oh-my-fish.git
synced 2025-02-19 15:42:44 +08:00
![Stephen M. Coakley](/assets/img/avatar_default.png)
Replace package database with independently installed package repositories - Add support for fetching and installing from package repositories containing package URLs and metadata - Support multiple package repository sources - Add new repo command - Remove submit command - Enhance describe and search commands - Fix and improve help text for new and adjusted commands - Fix bundle install exit status - Refer to plugins as "plugins" instead of the general term "packages" - Code clarity improvements - Put plugin/theme distinction into package metadata
4 lines
134 B
Fish
4 lines
134 B
Fish
function omf.packages.name -a name_or_url
|
|
command basename $name_or_url | sed -E 's/^(omf-)?((plugin|pkg|theme)-)?//;s/.git$//'
|
|
end
|