├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── fishfile ├── functions └── choices.fish ├── man └── man1 │ └── choices.md └── test └── choices.fish /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Markcial/choices/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Markcial/choices/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Markcial/choices/HEAD/README.md -------------------------------------------------------------------------------- /fishfile: -------------------------------------------------------------------------------- 1 | fisherman/getopts 2 | -------------------------------------------------------------------------------- /functions/choices.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Markcial/choices/HEAD/functions/choices.fish -------------------------------------------------------------------------------- /man/man1/choices.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Markcial/choices/HEAD/man/man1/choices.md -------------------------------------------------------------------------------- /test/choices.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Markcial/choices/HEAD/test/choices.fish --------------------------------------------------------------------------------