mirror of
https://github.com/fish-shell/fish-shell
synced 2024-12-27 05:13:10 +00:00
ddc617f80a
darcs-hash:20061129140229-ac50b-525f2cff869a066d5c3624880125e37862a9fd3b.gz
40 lines
804 B
Fish
40 lines
804 B
Fish
|
|
function save_function -d (N_ "Save the current definition of all specified functions to file")
|
|
|
|
if count $argv >/dev/null
|
|
switch $argv[1]
|
|
case -h --h --he --hel --help
|
|
__fish_print_help save_function
|
|
return 0
|
|
end
|
|
end
|
|
|
|
set -l res 0
|
|
|
|
set -l configdir ~/.config
|
|
if set -q XDG_CONFIG_HOME
|
|
set configdir $XDG_CONFIG_HOME
|
|
end
|
|
|
|
for i in $configdir $configdir/fish $configdir/fish/functions
|
|
if not test -d $i
|
|
if not builtin mkdir $configdir >/dev/null
|
|
printf (_ "%s: Could not create configuration directory\n") save_function
|
|
return 1
|
|
end
|
|
end
|
|
end
|
|
|
|
for i in $argv
|
|
if functions -q $i
|
|
functions $i > $configdir/fish/functions/$i.fish
|
|
functions -e $i
|
|
else
|
|
printf (_ "%s: Unknown function '%s'\n") save_function $i
|
|
set res 1
|
|
end
|
|
end
|
|
|
|
return $res
|
|
end
|
|
|