├── .dir-locals.el ├── .ert-runner ├── .gitignore ├── .travis.yml ├── Cask ├── Changelog.org ├── LICENSE ├── README.org ├── linux-gui-restart-test.sh ├── restart-emacs.el └── test ├── restart-emacs-test.el └── test-helper.el /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalansari/restart-emacs/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.ert-runner: -------------------------------------------------------------------------------- 1 | --reporter ert -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .cask/ 2 | dist 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalansari/restart-emacs/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalansari/restart-emacs/HEAD/Cask -------------------------------------------------------------------------------- /Changelog.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalansari/restart-emacs/HEAD/Changelog.org -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalansari/restart-emacs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalansari/restart-emacs/HEAD/README.org -------------------------------------------------------------------------------- /linux-gui-restart-test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalansari/restart-emacs/HEAD/linux-gui-restart-test.sh -------------------------------------------------------------------------------- /restart-emacs.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalansari/restart-emacs/HEAD/restart-emacs.el -------------------------------------------------------------------------------- /test/restart-emacs-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalansari/restart-emacs/HEAD/test/restart-emacs-test.el -------------------------------------------------------------------------------- /test/test-helper.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/iqbalansari/restart-emacs/HEAD/test/test-helper.el --------------------------------------------------------------------------------