[bash-completion] Make dynamic loader return 124 to retry completion

Close #3702
This commit is contained in:
Junegunn Choi 2024-03-29 16:20:50 +09:00
parent 07f8f70c5b
commit dff865239a
No known key found for this signature in database
GPG Key ID: 254BC280FEF9C627
1 changed files with 1 additions and 0 deletions

View File

@ -308,6 +308,7 @@ _fzf_handle_dynamic_completion() {
eval "$orig_complete"
fi
fi
[[ $ret -eq 0 ]] && return 124
return $ret
fi
}