add jenv completion detection

pull/1666/head
cornfeedhobo 2020-09-25 19:04:50 -05:00
parent 72f326ac78
commit f802925a14
No known key found for this signature in database
GPG Key ID: 724357093F994B26
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
#!/usr/bin/env bash
# Bash completion support for jenv
if _command_exists jenv && [[ -r "$(dirname $(readlink -f $(which jenv)))/../completions/jenv.bash" ]] ; then
source "$(dirname $(readlink -f $(which jenv)))/../completions/jenv.bash"
fi