completely icon indicating copy to clipboard operation
completely copied to clipboard

Generate bash completion scripts using a simple configuration file

Results 2 completely issues
Sort by recently updated
recently updated
newest added

We can port this logic from bash: ```bash # Figure out if we need sudo or not sudo='' if [[ $EUID -ne 0 ]]; then sudo='sudo' fi # Install completions...

enhancement

This project makes me almost completely happy. I want to write a completion for `rspec`, which is mostly painless. After being finished with my (opinionated) completion, I wanted to also...