mirror of
https://github.com/jorgebucaran/fisher
synced 2024-11-09 07:10:27 +00:00
20 lines
443 B
Fish
20 lines
443 B
Fish
function __fisher_file
|
|
awk '
|
|
/^[ \t]*(package|theme) .+/ {
|
|
if ($1 == "package") {
|
|
$1 = "https://github.com/oh-my-fish/plugin-"$2
|
|
} else {
|
|
$1 = "https://github.com/oh-my-fish/theme-"$2
|
|
}
|
|
}
|
|
|
|
!/^[ \t]*(#.*)*$/ {
|
|
gsub("^[|*>]|#.*", "")
|
|
|
|
if (! seen[$1]++) {
|
|
printf("%s\n", $1)
|
|
}
|
|
}
|
|
'
|
|
end
|