This layer provides support for the Julia language with the following feature:
- Edit Julia files using julia-mode
- Interactive REPL julia-repl
- Error checking using flycheck.(flycheck-julia)
git clone https://github.com/marciogm/julia-layer ~/.emacs.d/private/julia
To use this configuration layer, add it to your ~/.spacemacs
. You will need to
add julia
to the existing dotspacemacs-configuration-layers
list in this
file.
You can configure you Julia path with:
(julia :variables julia-executable "/path/to/bin/julia")
Key Binding | Description |
---|---|
SPC m s ' | Raise the REPL or create a new one |
SPC m s c | Send region (when applicable) or line to REPL |
SPC m s b | Send whole buffer to REPL |
SPC m s l | Send line to REPL |
SPC m e | Invoke `@edit` on region (when applicable) or line |
SPC m d | Invoke `@doc` on symbol |
SPC m w | `workspace()` |
SPC m m | Expand macro |