__ltrim_colon_completions is not always available on macOS, so bash-completion should check first

This commit is contained in:
Lucy Davies 2017-06-05 11:11:01 +01:00
parent 8d4ce3549a
commit f34239004d

View file

@ -132,7 +132,10 @@ __handle_reply()
declare -F __custom_func >/dev/null && __custom_func
fi
__ltrim_colon_completions "$cur"
# available in bash-completion >= 2, not always present on macOS
if command -v __ltrim_colon_completions >/dev/null; then
__ltrim_colon_completions "$cur"
fi
}
# The arguments should be in the form "ext1|ext2|extn"