├── .gitignore ├── CHANGELOG.md ├── Cask ├── LICENSE ├── README.org ├── psc-ide-backported.el ├── psc-ide-flycheck.el ├── psc-ide-protocol.el ├── psc-ide.el └── test ├── psc-ide-test.el └── test-helper.el /.gitignore: -------------------------------------------------------------------------------- 1 | .cask/ 2 | dist/ 3 | *.elc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-emacs/psc-ide-emacs/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /Cask: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-emacs/psc-ide-emacs/HEAD/Cask -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-emacs/psc-ide-emacs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.org: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-emacs/psc-ide-emacs/HEAD/README.org -------------------------------------------------------------------------------- /psc-ide-backported.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-emacs/psc-ide-emacs/HEAD/psc-ide-backported.el -------------------------------------------------------------------------------- /psc-ide-flycheck.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-emacs/psc-ide-emacs/HEAD/psc-ide-flycheck.el -------------------------------------------------------------------------------- /psc-ide-protocol.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-emacs/psc-ide-emacs/HEAD/psc-ide-protocol.el -------------------------------------------------------------------------------- /psc-ide.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-emacs/psc-ide-emacs/HEAD/psc-ide.el -------------------------------------------------------------------------------- /test/psc-ide-test.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-emacs/psc-ide-emacs/HEAD/test/psc-ide-test.el -------------------------------------------------------------------------------- /test/test-helper.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/purescript-emacs/psc-ide-emacs/HEAD/test/test-helper.el --------------------------------------------------------------------------------