mirror of https://github.com/bjeanes/dotfiles.git
11 lines
324 B
Plaintext
11 lines
324 B
Plaintext
# Gem Doc
|
|
export GEMDIR=`/usr/bin/gem env gemdir`
|
|
gemdoc() {
|
|
open $GEMDIR/doc/`$(which ls) $GEMDIR/doc | grep $1 | sort | tail -1`/rdoc/index.html
|
|
}
|
|
_gemdocomplete() {
|
|
COMPREPLY=($(compgen -W '$(`which ls` $GEMDIR/doc)' -- ${COMP_WORDS[COMP_CWORD]}))
|
|
return 0
|
|
}
|
|
|
|
complete -o default -o nospace -F _gemdocomplete gemdoc |