Sha256: a267ac72661d48292337093f3bbfa7f096218521f15f3f6f80541425d58fa1a7
Contents?: true
Size: 643 Bytes
Versions: 68
Compression:
Stored size: 643 Bytes
Contents
#!/usr/bin/env bash ################################################################################ # Time-stamp: <Lun 2015-01-19 16:25 svarrette> # # BASH completion for [FalkorLib](https://github.com/Falkor/falkorlib) # # Copyright (c) 2015 Sebastien Varrette <Sebastien.Varrette@uni.lu> ################################################################################ _falkor() { COMPREPLY=() local word="${COMP_WORDS[COMP_CWORD]}" if [ "$COMP_CWORD" -eq 1 ]; then local commands="$(compgen -W "$(falkor commands)" -- "$word")" COMPREPLY=( $commands $projects ) fi } complete -o default -F _falkor falkor
Version data entries
68 entries across 68 versions & 1 rubygems