mirror of
https://github.com/fish-shell/fish-shell.git
synced 2024-11-22 14:43:55 +08:00
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:
parent
3c95e00e8a
commit
7ef2d5e86f
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue
Block a user