├── .elpaignore ├── .gitignore ├── .travis.yml ├── Cask ├── Makefile ├── README.md ├── pangu-spacing.el ├── screenshot └── screenshot.gif └── test ├── pangu-spacing-test.el └── test-helper.el /.elpaignore: -------------------------------------------------------------------------------- 1 | .travis.yml 2 | .gitignore 3 | test/ 4 | screenshot/ 5 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.elc 2 | /.cask/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldnew/pangu-spacing/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldnew/pangu-spacing/HEAD/Cask -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldnew/pangu-spacing/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldnew/pangu-spacing/HEAD/README.md -------------------------------------------------------------------------------- /pangu-spacing.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldnew/pangu-spacing/HEAD/pangu-spacing.el -------------------------------------------------------------------------------- /screenshot/screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldnew/pangu-spacing/HEAD/screenshot/screenshot.gif -------------------------------------------------------------------------------- /test/pangu-spacing-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldnew/pangu-spacing/HEAD/test/pangu-spacing-test.el -------------------------------------------------------------------------------- /test/test-helper.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coldnew/pangu-spacing/HEAD/test/test-helper.el --------------------------------------------------------------------------------