├── .gitignore ├── .travis.yml ├── Cask ├── Makefile ├── README.md ├── ov.el └── test ├── ov-test.el └── test-helper.el /.gitignore: -------------------------------------------------------------------------------- 1 | ## .gitignore 2 | 3 | *-autoloads.el 4 | *.elc 5 | /.cask 6 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/ov/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/ov/HEAD/Cask -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/ov/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/ov/HEAD/README.md -------------------------------------------------------------------------------- /ov.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/ov/HEAD/ov.el -------------------------------------------------------------------------------- /test/ov-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/ov/HEAD/test/ov-test.el -------------------------------------------------------------------------------- /test/test-helper.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsorphanage/ov/HEAD/test/test-helper.el --------------------------------------------------------------------------------