mirror of
https://github.com/jorgebucaran/fisher
synced 2024-11-09 07:10:27 +00:00
13 lines
233 B
Fish
13 lines
233 B
Fish
|
function __fisher_function_to_plugin -a name
|
||
|
if test -d "$name"
|
||
|
return 1
|
||
|
end
|
||
|
|
||
|
set -l path (pwd)/$name
|
||
|
mkdir -p "$path"
|
||
|
|
||
|
functions -- $name | fish_indent > "$path/$name.fish"
|
||
|
|
||
|
printf "%s\n" "$path"
|
||
|
end
|