2015-04-14 20:55:13 +00:00
# Agda contribution layer for Spacemacs
## Description
This layer adds support for the [Agda][] programming language.
Some features:
- Faces redefined to correctly play with themes.
- Spacemacs bindings to Agda's interactive tools.
**This layer is in construction, it needs your contributions and bug reports.**
## Install
### Layer
To use this contribution add it to your `~/.spacemacs`
```elisp
(setq-default dotspacemacs-configuration-layers '(agda))
```
### Agda
2015-05-18 05:51:03 +00:00
Quick instructions to install Agda assuming you have cabal installed:
```sh
cabal install alex happy "cpphs < 1.19 " agda
```
Then check that `agda` is available on your `PATH` and seen by Emacs.
2015-04-14 20:55:13 +00:00
## Key bindings
2015-05-18 05:51:03 +00:00
The key bindings of this layer don't follow the Spacemacs conventions,
we opted to a simple transcription of stock Agda mode key bindings to
Spacemacs leader key.
2015-04-14 20:55:13 +00:00
All Agda specific bindings are prefixed with the major-mode leader
< kbd > SPC m< / kbd > .
Key Binding | Description
----------------------|------------------------------------------------------------
2015-05-18 05:51:03 +00:00
< kbd > SPC m =< / kbd > | Show constraints.
< kbd > SPC m ?< / kbd > | Show all goals.
< kbd > SPC m ,< / kbd > | Shows the type of the goal at point and the currect context.
< kbd > SPC m .< / kbd > | Shows the context, the goal and the given expression's inferred type.
2015-04-14 20:55:13 +00:00
< kbd > SPC m a< / kbd > | Simple proof search.
2015-05-18 05:51:03 +00:00
< kbd > SPC m b< / kbd > | Go to the previous goal, if any and activate goal-navigation micro-state.
2015-04-14 20:55:13 +00:00
< kbd > SPC m c< / kbd > | Refine the pattern variables given in the goal.
2015-05-18 05:51:03 +00:00
< kbd > SPC m d< / kbd > | Infers the type of the given expression.
2015-04-14 20:55:13 +00:00
< kbd > SPC m e< / kbd > | Show the context of the goal at point.
2015-05-18 05:51:03 +00:00
< kbd > SPC m f< / kbd > | Go to the next goal, if any and activate goal-navigation micro-state.
2015-04-14 20:55:13 +00:00
< kbd > SPC m h< / kbd > | Compute the type of a hypothetical helper function.
2015-05-18 05:51:03 +00:00
< kbd > SPC m l< / kbd > | Load current buffer.
2015-04-14 20:55:13 +00:00
< kbd > SPC m n< / kbd > | Computes the normal form of the given expression, using the scope of the current goal or, if point is not in a goal, the top-level scope.
2015-05-18 05:51:03 +00:00
< kbd > SPC m o< / kbd > | Shows all the top-level names in the given module.
< kbd > SPC m r< / kbd > | Refine the goal at point.
< kbd > SPC m s< / kbd > | Solves all goals that are already instantiated internally.
< kbd > SPC m t< / kbd > | Show the type of the goal at point.
< kbd > SPC m x c< / kbd > | Compile current module.
< kbd > SPC m x d< / kbd > | Removes buffer annotations (overlays and text properties).
< kbd > SPC m x h< / kbd > | Toggle display of implicit arguments.
< kbd > SPC m x q< / kbd > | Quit and clean up after agda2.
< kbd > SPC m x r</ kbd > | Kill and restart the *agda2* buffer and load `agda2-toplevel-module'.
< kbd > SPC m w< / kbd > | Explains why a given name is in scope.
2015-04-14 20:55:13 +00:00
[Agda]: http://wiki.portal.chalmers.se/agda/pmwiki.php