1
0
mirror of https://github.com/meineerde/dotfiles.git synced 2025-10-17 19:41:01 +00:00

Add bash conmpletion for ce helper

This commit is contained in:
Holger Just 2025-03-11 13:55:45 +01:00
parent 46fee39ddb
commit 6669010733
No known key found for this signature in database

View File

@ -273,9 +273,9 @@ _with_project() {
}
if shopt -q cdable_vars; then
[[ -n "$BASH_COMPLETION" ]] && complete -v -F _with_project -o nospace c e with_project
[[ -n "$BASH_COMPLETION" ]] && complete -v -F _with_project -o nospace c e ce with_project
else
[[ -n "$BASH_COMPLETION" ]] && complete -F _with_project -o nospace c e with_project
[[ -n "$BASH_COMPLETION" ]] && complete -F _with_project -o nospace c e ce with_project
fi
###############################################################################