├── .gitignore ├── .travis.yml ├── Makefile ├── assets └── cases.jpg ├── evil-string-inflection.el ├── license.md ├── readme.org └── test ├── elpa.el ├── make-compile.el ├── make-test.el ├── make-update.el └── test.el /.gitignore: -------------------------------------------------------------------------------- 1 | .elpa/ 2 | evil/ -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninrod/evil-string-inflection/HEAD/.travis.yml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninrod/evil-string-inflection/HEAD/Makefile -------------------------------------------------------------------------------- /assets/cases.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninrod/evil-string-inflection/HEAD/assets/cases.jpg -------------------------------------------------------------------------------- /evil-string-inflection.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninrod/evil-string-inflection/HEAD/evil-string-inflection.el -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninrod/evil-string-inflection/HEAD/license.md -------------------------------------------------------------------------------- /readme.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninrod/evil-string-inflection/HEAD/readme.org -------------------------------------------------------------------------------- /test/elpa.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninrod/evil-string-inflection/HEAD/test/elpa.el -------------------------------------------------------------------------------- /test/make-compile.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninrod/evil-string-inflection/HEAD/test/make-compile.el -------------------------------------------------------------------------------- /test/make-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninrod/evil-string-inflection/HEAD/test/make-test.el -------------------------------------------------------------------------------- /test/make-update.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninrod/evil-string-inflection/HEAD/test/make-update.el -------------------------------------------------------------------------------- /test/test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ninrod/evil-string-inflection/HEAD/test/test.el --------------------------------------------------------------------------------