2
0
Fork 0
mirror of https://github.com/fish-shell/fish-shell synced 2025-01-22 17:55:11 +00:00
fish-shell/share/functions/fish_update_completions.fish

12 lines
498 B
Fish
Raw Normal View History

function fish_update_completions --description "Update man-page based completions"
# Don't write .pyc files, use the manpath, clean up old completions
# display progress.
set -l update_args -B $__fish_data_dir/tools/create_manpage_completions.py --manpath --cleanup-in ~/.config/fish/generated_completions --progress $argv
if set -l python (__fish_anypython)
$python $update_args
else
printf "%s\n" (_ "python executable not found")
return 1
end
end