1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-02-03 04:50:04 +08:00
SpaceVim/docs/layers/lang/rust.md
2018-08-17 21:34:18 +08:00

59 lines
1.5 KiB
Markdown

---
title: "SpaceVim lang#rust layer"
description: "This layer is for rust development, provide autocompletion, syntax checking, code format for rust file."
---
# [Available Layers](../../) >> lang#rust
<!-- vim-markdown-toc GFM -->
- [Description](#description)
- [Features](#features)
- [Install](#install)
- [Layer](#layer)
- [Key bindings](#key-bindings)
- [Code runner](#code-runner)
<!-- vim-markdown-toc -->
## Description
This layer is for rust development.
## Features
- Code completion
- Syntax checking
- Syntax highlighting and indent
- Documentation lookup
- Jump to the definition.
- Find references
SpaceVim also provides code runner and Language Server protocol support for rust. to enable language server protocol
for rust, you need to load `lsp` layer for rust.
## Install
### Layer
To use this configuration layer, update custom configuration file with:
```toml
[[layers]]
name = "lang#rust"
```
## Key bindings
| Key binding | Description |
| --------------- | -------------------------------- |
| `SPC l d` / `K` | Show doc of cursor symbol |
| `SPC l e` | Rename symbol (need `lsp` layer) |
| `g d` | Jump to definition |
| `SPC l s` | Jump to definition (split) |
| `SPC l x` | Jump to definition (vertical) |
### Code runner
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.