diff --git a/bash_completions.go b/bash_completions.go index 5d6238b2..e0cfb349 100644 --- a/bash_completions.go +++ b/bash_completions.go @@ -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 declare -F __ltrim_colon_completions >/dev/null; then + __ltrim_colon_completions "$cur" + fi } # The arguments should be in the form "ext1|ext2|extn"