2015-12-02 14:23:39 +00:00
#+TITLE : F# layer
2015-06-10 16:44:30 +00:00
[[file:img/fsharp.png ]]
2018-09-19 03:54:47 +00:00
* Table of Contents :TOC_4_gh:noexport:
2017-05-22 14:16:12 +00:00
- [[#description ][Description ]]
2018-01-07 22:26:54 +00:00
- [[#features ][Features: ]]
2017-05-22 14:16:12 +00:00
- [[#install ][Install ]]
- [[#key-bindings ][Key Bindings ]]
- [[#repl ][REPL ]]
2015-06-10 16:44:30 +00:00
* Description
2018-01-07 22:26:54 +00:00
This layer adds support for F# language using [[https://github.com/fsharp/fsharpbinding ][fsharpbinding ]] and [[https://github.com/fsharp/fsharpbinding ][fsharp-mode ]].
2015-06-10 16:44:30 +00:00
2018-01-07 22:26:54 +00:00
** Features:
- Syntax highlighting
- Code completion
- Flycheck integration
- REPL
- Compile/Run/Interpreter and info tooltip shortcuts
2016-04-13 03:31:38 +00:00
2015-06-10 16:44:30 +00:00
* Install
2016-01-06 05:21:55 +00:00
To use this configuration layer, add it to your =~/.spacemacs= . You will need to
add =fsharp= to the existing =dotspacemacs-configuration-layers= list in this
file.
2015-06-10 16:44:30 +00:00
* Key Bindings
| Key Binding | Description |
|-------------+----------------------------|
2015-06-12 01:23:07 +00:00
| ~SPC m c c~ | Build the project |
| ~SPC m g g~ | Go to definition at point |
| ~SPC m h t~ | Show tooltip help at point |
2015-06-10 16:44:30 +00:00
** REPL
| Key Binding | Description |
|-------------+------------------------------------------------------------------|
2015-06-12 01:23:07 +00:00
| ~SPC m s b~ | Send buffer to the REPL |
| ~SPC m s B~ | Send buffer to the REPL and switch to the REPL in =insert state= |
| ~SPC m s i~ | Start a REPL |
| ~SPC m s p~ | Send phrase to the REPL |
| ~SPC m s P~ | Send phrase to the REPL and switch to the REPL in =insert state= |
| ~SPC m s r~ | Send region to the REPL |
| ~SPC m s R~ | Send region to the REPL and switch to the REPL in =insert state= |
| ~SPC m s s~ | Show the REPL |