├── .gitignore ├── .travis.yml ├── Cask ├── LICENSE ├── Makefile ├── matcha-alchemist.el ├── matcha-android-mode.el ├── matcha-base.el ├── matcha-cc-mode.el ├── matcha-dape.el ├── matcha-dired.el ├── matcha-eglot.el ├── matcha-elisp.el ├── matcha-go-mode.el ├── matcha-hg-histedit.el ├── matcha-js.el ├── matcha-js2-refactor.el ├── matcha-json-mode.el ├── matcha-kotlin-mode.el ├── matcha-log-edit.el ├── matcha-macrostep.el ├── matcha-magit.el ├── matcha-me.el ├── matcha-mocha.el ├── matcha-omnisharp.el ├── matcha-org.el ├── matcha-pass.el ├── matcha-prettier.el ├── matcha-project.el ├── matcha-projectile.el ├── matcha-python.el ├── matcha-restclient.el ├── matcha-rust-mode.el ├── matcha-slime.el ├── matcha-smerge-mode.el ├── matcha-swift-mode.el ├── matcha-term.el ├── matcha-tide.el ├── matcha-vc-dir.el ├── matcha-vc-git.el ├── matcha-vc-hgcmd.el ├── matcha.el ├── readme.org ├── screenshots ├── elisp.png ├── projectile.png └── vcdir.png └── test ├── matcha-test.el └── test-helper.el /.gitignore: -------------------------------------------------------------------------------- 1 | .cask/ 2 | *.elc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/Cask -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/Makefile -------------------------------------------------------------------------------- /matcha-alchemist.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-alchemist.el -------------------------------------------------------------------------------- /matcha-android-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-android-mode.el -------------------------------------------------------------------------------- /matcha-base.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-base.el -------------------------------------------------------------------------------- /matcha-cc-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-cc-mode.el -------------------------------------------------------------------------------- /matcha-dape.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-dape.el -------------------------------------------------------------------------------- /matcha-dired.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-dired.el -------------------------------------------------------------------------------- /matcha-eglot.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-eglot.el -------------------------------------------------------------------------------- /matcha-elisp.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-elisp.el -------------------------------------------------------------------------------- /matcha-go-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-go-mode.el -------------------------------------------------------------------------------- /matcha-hg-histedit.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-hg-histedit.el -------------------------------------------------------------------------------- /matcha-js.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-js.el -------------------------------------------------------------------------------- /matcha-js2-refactor.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-js2-refactor.el -------------------------------------------------------------------------------- /matcha-json-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-json-mode.el -------------------------------------------------------------------------------- /matcha-kotlin-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-kotlin-mode.el -------------------------------------------------------------------------------- /matcha-log-edit.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-log-edit.el -------------------------------------------------------------------------------- /matcha-macrostep.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-macrostep.el -------------------------------------------------------------------------------- /matcha-magit.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-magit.el -------------------------------------------------------------------------------- /matcha-me.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-me.el -------------------------------------------------------------------------------- /matcha-mocha.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-mocha.el -------------------------------------------------------------------------------- /matcha-omnisharp.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-omnisharp.el -------------------------------------------------------------------------------- /matcha-org.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-org.el -------------------------------------------------------------------------------- /matcha-pass.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-pass.el -------------------------------------------------------------------------------- /matcha-prettier.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-prettier.el -------------------------------------------------------------------------------- /matcha-project.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-project.el -------------------------------------------------------------------------------- /matcha-projectile.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-projectile.el -------------------------------------------------------------------------------- /matcha-python.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-python.el -------------------------------------------------------------------------------- /matcha-restclient.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-restclient.el -------------------------------------------------------------------------------- /matcha-rust-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-rust-mode.el -------------------------------------------------------------------------------- /matcha-slime.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-slime.el -------------------------------------------------------------------------------- /matcha-smerge-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-smerge-mode.el -------------------------------------------------------------------------------- /matcha-swift-mode.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-swift-mode.el -------------------------------------------------------------------------------- /matcha-term.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-term.el -------------------------------------------------------------------------------- /matcha-tide.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-tide.el -------------------------------------------------------------------------------- /matcha-vc-dir.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-vc-dir.el -------------------------------------------------------------------------------- /matcha-vc-git.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-vc-git.el -------------------------------------------------------------------------------- /matcha-vc-hgcmd.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha-vc-hgcmd.el -------------------------------------------------------------------------------- /matcha.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/matcha.el -------------------------------------------------------------------------------- /readme.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/readme.org -------------------------------------------------------------------------------- /screenshots/elisp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/screenshots/elisp.png -------------------------------------------------------------------------------- /screenshots/projectile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/screenshots/projectile.png -------------------------------------------------------------------------------- /screenshots/vcdir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/screenshots/vcdir.png -------------------------------------------------------------------------------- /test/matcha-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/test/matcha-test.el -------------------------------------------------------------------------------- /test/test-helper.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jojojames/matcha/HEAD/test/test-helper.el --------------------------------------------------------------------------------