Last active
December 17, 2015 11:59
-
-
Save tav/5606739 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
_optparse_completion() { | |
COMPREPLY=( $( \ | |
COMP_LINE=$COMP_LINE COMP_POINT=$COMP_POINT \ | |
COMP_WORDS="${COMP_WORDS[*]}" COMP_CWORD=$COMP_CWORD \ | |
OPTPARSE_AUTO_COMPLETE=1 $1 ) ) | |
} | |
if test "$PS1"; then | |
shopt -s extglob progcomp | |
complete -o default -F _optparse_completion html2domly | |
fi |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Also run:
git config --global color.ui auto