fish_update_completions: Pick a python

This removes a need for packagers to either patch our shebangs or pick
a particular python.

This was already done in __fish_config_interactive (where we need to
duplicate the code because it involves backgrounding).

Work towards #3970.
This commit is contained in:
Fabian Homborg 2017-04-20 13:35:20 +02:00
parent 3c95e00e8a
commit 7ef2d5e86f

View File

@ -1,4 +1,11 @@
function fish_update_completions --description "Update man-page based completions"
# Clean up old paths
python -B $__fish_datadir/tools/create_manpage_completions.py --manpath --progress --cleanup-in '~/.config/fish/completions' --cleanup-in '~/.config/fish/generated_completions'
set -l update_args -B $__fish_datadir/tools/create_manpage_completions.py --manpath --cleanup-in '~/.config/fish/completions' --cleanup-in '~/.config/fish/generated_completions' --progress
if command -qs python3
python3 $update_args
else if command -qs python2
python2 $update_args
else if command -qs python
python $update_args
end
end