spacemacs/layers/+lang/purescript
2015-12-19 22:49:00 -05:00
..
img Use + instead of ! for layer categories 2015-09-11 00:13:51 -04:00
config.el adds psc-ide support to purescript layer 2015-12-19 22:49:00 -05:00
packages.el adds psc-ide support to purescript layer 2015-12-19 22:49:00 -05:00
README.org adds psc-ide support to purescript layer 2015-12-19 22:49:00 -05:00

Purescript layer

/TakeV/spacemacs/media/commit/acd3ffcdd3e38677f8acb317c5083ae0dab2d0dd/layers/+lang/purescript/img/purescript-logo.png

Description

This layer provides basic Purescript editing support for spacemacs thanks to the following packages:

Install

To use this contribution add it to your ~/.spacemacs

  (setq-default dotspacemacs-configuration-layers '(purescript))

If you want to get autocompletions and type information you have to install psc-ide.

Key bindings

Purescript

Imports

Key Binding Description
SPC m i = Format imports
SPC m i \ Return to where you were editing before navigating to imports
SPC m i a Align imports
SPC m i n Navigate to the imports

psc-ide

Key Binding Description
SPC m m s Start psc-ide-server
SPC m m l Load a module with its dependencies into psc-ide-server
SPC m m t Show type at point

REPL

psci provides a very basic REPL for purescript. The following key bindings are available:

Key Binding Description
SPC m s b Equivalent of :m /path/to/current/module/file.purs - Load <file> for importing
SPC m s i Launch a psci console buffer
SPC m s m Equivalent of :i your.current.module.name - Import <module> for use in PSCI
SPC m s p Load or reload files defined in the project file .psci