├── .githooks └── pre-push ├── .gitignore ├── .travis.yml ├── README.org ├── buttons.el ├── doc ├── .gitignore ├── img │ ├── emacs-buttons.png │ └── sample-visualization.png └── motivation.org └── test ├── buttons-tests.el ├── load-flycheck.el └── test.sh /.githooks/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjoalgo/emacs-buttons/HEAD/.githooks/pre-push -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjoalgo/emacs-buttons/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjoalgo/emacs-buttons/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjoalgo/emacs-buttons/HEAD/README.org -------------------------------------------------------------------------------- /buttons.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjoalgo/emacs-buttons/HEAD/buttons.el -------------------------------------------------------------------------------- /doc/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjoalgo/emacs-buttons/HEAD/doc/.gitignore -------------------------------------------------------------------------------- /doc/img/emacs-buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjoalgo/emacs-buttons/HEAD/doc/img/emacs-buttons.png -------------------------------------------------------------------------------- /doc/img/sample-visualization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjoalgo/emacs-buttons/HEAD/doc/img/sample-visualization.png -------------------------------------------------------------------------------- /doc/motivation.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjoalgo/emacs-buttons/HEAD/doc/motivation.org -------------------------------------------------------------------------------- /test/buttons-tests.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjoalgo/emacs-buttons/HEAD/test/buttons-tests.el -------------------------------------------------------------------------------- /test/load-flycheck.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjoalgo/emacs-buttons/HEAD/test/load-flycheck.el -------------------------------------------------------------------------------- /test/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erjoalgo/emacs-buttons/HEAD/test/test.sh --------------------------------------------------------------------------------