We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0eea357 commit e923e7fCopy full SHA for e923e7f
bash_completion
@@ -895,7 +895,10 @@ _comp_delimited()
895
_comp_compgen COMPREPLY "$@" -- "${cur##*"$delimiter"}"
896
fi
897
898
- ((${#COMPREPLY[@]})) && COMPREPLY=("${COMPREPLY[@]/#/"$prefix"}")
+ local i
899
+ for i in "${!COMPREPLY[@]}"; do
900
+ COMPREPLY[i]="$prefix${COMPREPLY[i]}"
901
+ done
902
903
[[ $delimiter != : ]] || __ltrim_colon_completions "$cur"
904
}
0 commit comments