Skip to content
Snippets Groups Projects
Commit 5844fcbb authored by Sven Mäder's avatar Sven Mäder :speech_balloon:
Browse files

Only source completion if binary in ~/.local/bin

Source the envrcd completions only if binaries are actually found
in ~/.local/bin and executable.
Fixes incompatibility with possibly installed system packages.
parent 8b3b7efc
No related branches found
No related tags found
No related merge requests found
......@@ -27,8 +27,10 @@ fi
# bash completions for local commands in ~/.local/bin
LOCAL_COMMANDS="fzf tldr zellij uv xh sd delta dust pdu dog hyperfine btm broot lsd eza"
for LOCAL_COMMAND in ${LOCAL_COMMANDS}; do
#if [ -x "$(command -v ${LOCAL_COMMAND})" ]; then # POSIX compatible
if hash ${LOCAL_COMMAND} 2>/dev/null; then # bash builtin
source_if_exists "${ENVRCD_PATH}/profile/_assets/completions/${LOCAL_COMMAND}_bash"
fi
#if [ -x "$(command -v ${LOCAL_COMMAND})" ]; then # POSIX compatible
if hash ${LOCAL_COMMAND} 2>/dev/null; then # bash builtin
if [ -x ~/.local/bin/${LOCAL_COMMAND} ]; then
source_if_exists "${ENVRCD_PATH}/profile/_assets/completions/${LOCAL_COMMAND}_bash"
fi
fi
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment