1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-25 07:10:06 +08:00
SpaceVim/docs/cn/layers/lang/erlang.md
2019-02-03 20:51:00 +08:00

62 lines
1.7 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
title: "SpaceVim lang#erlang 模块"
description: "这一模块为 Erlang 开发提供支持,包括代码补全、语法检查、代码格式化等特性。"
lang: cn
---
# [可用模块](../../) >> lang#erlang
<!-- vim-markdown-toc GFM -->
- [模块简介](#模块简介)
- [功能特性](#功能特性)
- [启用模块](#启用模块)
- [快捷键](#快捷键)
- [语言专属快捷键](#语言专属快捷键)
- [交互式编程](#交互式编程)
<!-- vim-markdown-toc -->
## 模块简介
这一模块为 SpaceVim 提供了 Erlang 开发支持,包括代码补全、语法检查以及代码格式化等特性。
## 功能特性
- 代码补全
- 文档查询
- 跳转定义处
同时SpaceVim 还为 Erlang 开发提供了交互式编程和语言服务器等功能。若要启用语言服务器,需要载入 `lsp` 模块。
## 启用模块
可通过在配置文件内加入如下配置来启用该模块:
```toml
[[layers]]
name = "lang#erlang"
```
## 快捷键
### 语言专属快捷键
| 快捷键 | 功能描述 |
| --------------- | --------------------------------------------- |
| `SPC l d` / `K` | 展示光标函数或变量相关文档(需要 `lsp` 模块) |
| `SPC l e` | 重命名光标函数或变量(需要 `lsp` 模块) |
| `g d` | 跳至函数或变量定义处(需要 `lsp` 模块) |
### 交互式编程
启动 `erl` 交互进程,快捷键为: `SPC l s i`
将代码传输给 REPL 进程执行:
| 快捷键 | 功能描述 |
| ----------- | ----------------------- |
| `SPC l s b` | 发送整个文件内容至 REPL |
| `SPC l s l` | 发送当前行内容至 REPL |
| `SPC l s s` | 发送已选中的内容至 REPL |