├── .github └── workflows │ └── test.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.org ├── evil-owl.el ├── img ├── marks.png └── registers.png └── test ├── elpa.el ├── evil-owl-test.el ├── make-checkdoc.el ├── make-compile.el ├── make-test.el └── make-update.el /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamapanda/evil-owl/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .elpa/ 2 | *.elc 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamapanda/evil-owl/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamapanda/evil-owl/HEAD/Makefile -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamapanda/evil-owl/HEAD/README.org -------------------------------------------------------------------------------- /evil-owl.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamapanda/evil-owl/HEAD/evil-owl.el -------------------------------------------------------------------------------- /img/marks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamapanda/evil-owl/HEAD/img/marks.png -------------------------------------------------------------------------------- /img/registers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamapanda/evil-owl/HEAD/img/registers.png -------------------------------------------------------------------------------- /test/elpa.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamapanda/evil-owl/HEAD/test/elpa.el -------------------------------------------------------------------------------- /test/evil-owl-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamapanda/evil-owl/HEAD/test/evil-owl-test.el -------------------------------------------------------------------------------- /test/make-checkdoc.el: -------------------------------------------------------------------------------- 1 | (checkdoc-file "evil-owl.el") 2 | -------------------------------------------------------------------------------- /test/make-compile.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamapanda/evil-owl/HEAD/test/make-compile.el -------------------------------------------------------------------------------- /test/make-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamapanda/evil-owl/HEAD/test/make-test.el -------------------------------------------------------------------------------- /test/make-update.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mamapanda/evil-owl/HEAD/test/make-update.el --------------------------------------------------------------------------------