This repository has been archived on 2024-10-22. You can view files and clone it, but cannot push or open issues or pull requests.
spacemacs/contrib/lang/haskell/README.md

100 lines
3.6 KiB
Markdown
Raw Normal View History

# Haskell contribution layer for Spacemacs
2014-12-12 00:55:44 +00:00
![logo](haskell.png)
This layer adds support for the [Haskell][] language.
The layer uses company-ghc for completetion.
**This layer is still not fully adapted for Spacemacs, it needs you, Haskell experts, to
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)
"List of contribution to load."
)
```
## Key bindings
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
#### 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
#### 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
#### 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
#### 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
### 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
**TODO**
[Haskell]: https://www.haskell.org/