2017-12-17 14:11:57 +08:00
|
|
|
---
|
|
|
|
title: "SpaceVim lang#elixir layer"
|
|
|
|
description: "This layer is for elixir development, provide autocompletion, syntax checking, code format for elixir file."
|
|
|
|
---
|
|
|
|
|
2018-06-23 14:37:41 +08:00
|
|
|
# [Available Layers](../../) >> lang#elixir
|
2017-12-17 14:11:57 +08:00
|
|
|
|
|
|
|
<!-- vim-markdown-toc GFM -->
|
|
|
|
|
|
|
|
- [Description](#description)
|
|
|
|
- [Features](#features)
|
|
|
|
- [Install](#install)
|
|
|
|
- [Layer](#layer)
|
|
|
|
- [Key bindings](#key-bindings)
|
2018-08-14 20:02:54 +08:00
|
|
|
- [Language specific key bindings](#language-specific-key-bindings)
|
2017-12-17 14:11:57 +08:00
|
|
|
- [Inferior REPL process](#inferior-repl-process)
|
|
|
|
- [Running current script](#running-current-script)
|
|
|
|
|
|
|
|
<!-- vim-markdown-toc -->
|
|
|
|
|
|
|
|
## Description
|
|
|
|
|
|
|
|
This layer is for Elixir development.
|
|
|
|
|
|
|
|
## Features
|
|
|
|
|
|
|
|
This layer include the plugin [slashmili/alchemist.vim](https://github.com/slashmili/alchemist.vim), which provides:
|
|
|
|
|
|
|
|
- Completion for Modules and functions.
|
|
|
|
- Documentation lookup for Modules and functions.
|
|
|
|
- Jump to the definition.
|
|
|
|
|
2018-08-14 20:02:54 +08:00
|
|
|
SpaceVim also provides REPL, code runner and Language Server protocol support for elixir. to enable language server protocol
|
|
|
|
for elixir, you need to load `lsp` layer for elixir.
|
2017-12-17 14:11:57 +08:00
|
|
|
|
|
|
|
## Install
|
|
|
|
|
|
|
|
### Layer
|
|
|
|
|
2018-06-23 14:37:41 +08:00
|
|
|
To use this configuration layer, update custom configuration file with:
|
|
|
|
|
|
|
|
```toml
|
|
|
|
[[layers]]
|
|
|
|
name = "lang#elixir"
|
|
|
|
```
|
2017-12-17 14:11:57 +08:00
|
|
|
|
|
|
|
## Key bindings
|
|
|
|
|
2018-08-14 20:02:54 +08:00
|
|
|
### Language specific key bindings
|
|
|
|
|
|
|
|
| Key binding | Description |
|
|
|
|
| --------------- | -------------------------------- |
|
|
|
|
| `SPC l d` / `K` | Show doc of cursor symbol |
|
|
|
|
| `SPC l t` | Jump to tag stack |
|
|
|
|
| `SPC l e` | Rename symbol (need `lsp` layer) |
|
|
|
|
| `g d` | Jump to definition |
|
|
|
|
|
2017-12-17 14:11:57 +08:00
|
|
|
### Inferior REPL process
|
|
|
|
|
2019-01-07 21:15:22 +08:00
|
|
|
Start a `iex` inferior REPL process with `SPC l s i`.
|
2017-12-17 14:11:57 +08:00
|
|
|
|
|
|
|
Send code to inferior process commands:
|
|
|
|
|
|
|
|
| Key Binding | Description |
|
|
|
|
| ----------- | ------------------------------------------------ |
|
|
|
|
| `SPC l s b` | send buffer and keep code buffer focused |
|
|
|
|
| `SPC l s l` | send line and keep code buffer focused |
|
|
|
|
| `SPC l s s` | send selection text and keep code buffer focused |
|
|
|
|
|
|
|
|
### Running current script
|
|
|
|
|
|
|
|
To running current script, you can press `SPC l r` to run current file without loss focus, and the result will be shown in a runner buffer.
|