2014-12-02 04:22:45 +00:00
|
|
|
# Haskell contribution layer for Spacemacs
|
|
|
|
|
2014-12-12 00:55:44 +00:00
|
|
|
![logo](haskell.png)
|
2014-12-02 04:22:45 +00:00
|
|
|
|
|
|
|
This layer adds support for the [Haskell][] language.
|
2014-12-21 16:03:27 +00:00
|
|
|
The layer uses company-ghc for completetion.
|
2014-12-02 04:22:45 +00:00
|
|
|
|
2014-12-21 16:03:27 +00:00
|
|
|
**This layer is still not fully adapted for Spacemacs, it needs you, Haskell experts, to
|
2014-12-02 04:22:45 +00:00
|
|
|
improve it and make it consistent with the Spacemacs experience.**
|
|
|
|
|
|
|
|
## Install
|
|
|
|
|
|
|
|
To use this contribution add it to your `~/.spacemacs`
|
|
|
|
|
|
|
|
```elisp
|
2014-12-10 04:50:48 +00:00
|
|
|
(setq-default dotspacemacs-configuration-layers '(haskell)
|
2014-12-02 04:22:45 +00:00
|
|
|
"List of contribution to load."
|
|
|
|
)
|
|
|
|
```
|
|
|
|
|
|
|
|
## Key bindings
|
|
|
|
|
2014-12-21 16:03:27 +00:00
|
|
|
All Haskell specific bindings are prefixed with <kbd>SPC m</kbd>
|
|
|
|
|
|
|
|
### Haskell source code:
|
|
|
|
|
|
|
|
#### Haskell commands:
|
|
|
|
Top-level commands are prefixed by <kbd>SPC m</kbd>:
|
|
|
|
|
2014-12-22 04:19:04 +00:00
|
|
|
Key Binding | Description
|
|
|
|
----------------------|------------------------------------------------------------
|
|
|
|
<kbd>SPC m C</kbd> | compile the current project
|
|
|
|
<kbd>SPC m t</kbd> | gets the type of the identifier under the cursor
|
|
|
|
<kbd>SPC m i</kbd> | gets information for the identifier under the cursor
|
|
|
|
<kbd>SPC m b</kbd> | build the current cabal project
|
|
|
|
<kbd>SPC m u</kbd> | finds uses of identifier
|
|
|
|
<kbd>SPC m g</kbd> | go to definition or tag
|
2014-12-21 16:03:27 +00:00
|
|
|
|
|
|
|
#### Documentation commands:
|
|
|
|
Documentation commands are prefixed by <kbd>SPC m h</kbd>
|
|
|
|
|
2014-12-22 04:19:04 +00:00
|
|
|
Key Binding | Description
|
|
|
|
----------------------|------------------------------------------------------------
|
|
|
|
<kbd>SPC m h d</kbd> | find or generate Haddock documentation for the identifier under the cursor
|
|
|
|
<kbd>SPC m h h</kbd> | do a Hoogle lookup
|
|
|
|
<kbd>SPC m h y</kbd> | do a Hayoo lookup
|
2014-12-21 16:03:27 +00:00
|
|
|
|
|
|
|
|
|
|
|
#### Cabal commands:
|
|
|
|
Cabal commands are prefixed by <kbd>SPC m c</kbd>:
|
|
|
|
|
2014-12-22 04:19:04 +00:00
|
|
|
Key Binding | Description
|
|
|
|
----------------------|------------------------------------------------------------
|
|
|
|
<kbd>SPC m c c</kbd> | cabal actions
|
|
|
|
<kbd>SPC m c v</kbd> | visit the cabal file
|
2014-12-21 16:03:27 +00:00
|
|
|
|
|
|
|
#### Debug commands:
|
|
|
|
Debug commands are prefixed by <kbd>SPC m d</kbd>:
|
|
|
|
|
2014-12-22 04:19:04 +00:00
|
|
|
Key Binding | Description
|
|
|
|
----------------------|------------------------------------------------------------
|
|
|
|
<kbd>SPC m d d </kbd> | start debug process, needs to be run first
|
|
|
|
<kbd>SPC m d b </kbd> | insert breakpoint at function
|
|
|
|
<kbd>SPC m d n </kbd> | next breakpoint
|
|
|
|
<kbd>SPC m d p </kbd> | previous breakpoint
|
|
|
|
<kbd>SPC m d B </kbd> | delete breakpoint
|
|
|
|
<kbd>SPC m d c </kbd> | continue current process
|
|
|
|
<kbd>SPC m d a </kbd> | abandon current process
|
|
|
|
<kbd>SPC m d r </kbd> | refresh process buffer
|
2014-12-21 16:03:27 +00:00
|
|
|
|
|
|
|
#### REPL commands:
|
|
|
|
REPL commands are prefixed by <kbd>SPC m s</kbd>:
|
|
|
|
|
2014-12-22 04:19:04 +00:00
|
|
|
Key Binding | Description
|
|
|
|
----------------------|------------------------------------------------------------
|
|
|
|
<kbd>SPC m s b</kbd> | load or reload the current buffer into the REPL
|
|
|
|
<kbd>SPC m s c</kbd> | clear the REPL
|
|
|
|
<kbd>SPC m s s</kbd> | show the REPL
|
|
|
|
<kbd>SPC m s S</kbd> | show and switch to the REPL
|
2014-12-21 16:03:27 +00:00
|
|
|
|
|
|
|
### Cabal files:
|
|
|
|
|
2014-12-22 04:19:04 +00:00
|
|
|
Key Binding | Description
|
|
|
|
----------------------|------------------------------------------------------------
|
|
|
|
<kbd>SPC m d</kbd> | add a dependency to the project
|
|
|
|
<kbd>SPC m b</kbd> | go to benchmark section
|
|
|
|
<kbd>SPC m e</kbd> | go to executable section
|
|
|
|
<kbd>SPC m t</kbd> | go to test-suite section
|
|
|
|
<kbd>SPC m m</kbd> | go to exposed modules
|
|
|
|
<kbd>SPC m l</kbd> | go to libary section
|
|
|
|
<kbd>SPC m n</kbd> | go to next subsection
|
|
|
|
<kbd>SPC m p</kbd> | go to previous subsection
|
|
|
|
<kbd>SPC m N</kbd> | go to next section
|
|
|
|
<kbd>SPC m P</kbd> | go to previous section
|
|
|
|
<kbd>SPC m f</kbd> | find or create source-file under the cursor
|
2014-12-21 16:03:27 +00:00
|
|
|
|
2014-12-02 04:22:45 +00:00
|
|
|
**TODO**
|
|
|
|
|
|
|
|
[Haskell]: https://www.haskell.org/
|