1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-01-25 05:10:05 +08:00
SpaceVim/docs/cn/layers/lang/d.md
2019-10-04 14:13:51 +08:00

55 lines
1.2 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#d 模块"
description: "这一模块为 d 开发提供支持,包括语法高亮、自动补全、一键运行等特性。"
lang: zh
---
# [可用模块](../../) >> lang#d
<!-- vim-markdown-toc GFM -->
- [模块简介](#模块简介)
- [启用模块](#启用模块)
- [快捷键](#快捷键)
- [运行当前脚本](#运行当前脚本)
- [交互式编程](#交互式编程)
<!-- vim-markdown-toc -->
## 模块简介
这一模块为在 SpaceVim 中进行 d 开发提供了支持。
## 启用模块
可通过在配置文件内加入如下配置来启用该模块:
```toml
[[layers]]
name = "lang#d"
```
安装D语言交互式编程工具
```sh
dub fetch drepl
```
## 快捷键
### 运行当前脚本
在编辑 d 文件时,可通过快捷键 `SPC l r` 快速异步运行当前文件,运行结果会展示在一个独立的执行窗口内。
### 交互式编程
启动 `dub run drepl` 交互进程,快捷键为: `SPC l s i`
将代码传输给 REPL 进程执行:
| 快捷键 | 功能描述 |
| ----------- | ----------------------- |
| `SPC l s b` | 发送整个文件内容至 REPL |
| `SPC l s l` | 发送当前行内容至 REPL |
| `SPC l s s` | 发送已选中的内容至 REPL |