├── .gitignore ├── .travis.yml ├── History.md ├── LICENSE ├── Makefile ├── README.md ├── c_extras.sh ├── composure.plugin.zsh ├── composure.sh ├── lookup.pl └── test ├── Makefile ├── runshellcheck.sh └── wvtestrun /.gitignore: -------------------------------------------------------------------------------- 1 | composure_test/** 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichs/composure/HEAD/.travis.yml -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichs/composure/HEAD/History.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichs/composure/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichs/composure/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichs/composure/HEAD/README.md -------------------------------------------------------------------------------- /c_extras.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichs/composure/HEAD/c_extras.sh -------------------------------------------------------------------------------- /composure.plugin.zsh: -------------------------------------------------------------------------------- 1 | #!/bin/zsh 2 | source ${0:h}/{composure,c_extras}.sh 3 | -------------------------------------------------------------------------------- /composure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichs/composure/HEAD/composure.sh -------------------------------------------------------------------------------- /lookup.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichs/composure/HEAD/lookup.pl -------------------------------------------------------------------------------- /test/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichs/composure/HEAD/test/Makefile -------------------------------------------------------------------------------- /test/runshellcheck.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichs/composure/HEAD/test/runshellcheck.sh -------------------------------------------------------------------------------- /test/wvtestrun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erichs/composure/HEAD/test/wvtestrun --------------------------------------------------------------------------------