diff --git a/docs/cn/layers/lang/pascal.md b/docs/cn/layers/lang/pascal.md new file mode 100644 index 000000000..6340f5e7a --- /dev/null +++ b/docs/cn/layers/lang/pascal.md @@ -0,0 +1,35 @@ +--- +title: "SpaceVim lang#pascal 模块" +description: "这一模块为 pascal 开发提供支持,包括一键运行等特性。" +lang: zh +--- + +# [可用模块](../../) >> lang#pascal + + + +- [模块简介](#模块简介) +- [启用模块](#启用模块) +- [快捷键](#快捷键) + - [运行当前脚本](#运行当前脚本) + + + +## 模块简介 + +这一模块为在 SpaceVim 中进行 pascal 开发提供了支持。 + +## 启用模块 + +可通过在配置文件内加入如下配置来启用该模块: + +```toml +[[layers]] + name = "lang#pascal" +``` + +## 快捷键 + +### 运行当前脚本 + +在编辑 pascal 文件时,可通过快捷键 `SPC l r` 快速异步运行当前文件,运行结果会展示在一个独立的执行窗口内。 diff --git a/docs/cn/layers/lang/slim.md b/docs/cn/layers/lang/slim.md new file mode 100644 index 000000000..7e918c1a4 --- /dev/null +++ b/docs/cn/layers/lang/slim.md @@ -0,0 +1,27 @@ +--- +title: "SpaceVim lang#slim 模块" +description: "这一模块为 slim 开发提供支持,主要包括了语法高亮。" +lang: zh +--- + +# [可用模块](../../) >> lang#slim + + + +- [模块简介](#模块简介) +- [启用模块](#启用模块) + + + +## 模块简介 + +这一模块为 SpaceVim 提供了 [Slim](http://slim-lang.com/) 语言的语法高亮支持。。 + +## 启用模块 + +可通过在配置文件内加入如下配置来启用该模块: + +```toml +[[layers]] + name = "lang#slim" +``` diff --git a/docs/layers/lang/pascal.md b/docs/layers/lang/pascal.md new file mode 100644 index 000000000..c0590bc18 --- /dev/null +++ b/docs/layers/lang/pascal.md @@ -0,0 +1,35 @@ +--- +title: "SpaceVim lang#pascal layer" +description: "This layer is for pascal development, provides syntax highlighting, code runner for pascal file." +--- + +# [Available Layers](../../) >> lang#pascal + + + +- [Description](#description) +- [Install](#install) +- [Features](#features) +- [Key bindings](#key-bindings) + + + +## Description + +This layer is for pascal development. + +## Install + +To use this configuration layer, update custom configuration file with: + +```toml +[[layers]] + name = "lang#pascal" +``` +## Features + +- code runner + +## Key bindings + +To running a pascal file, you can press `SPC l r` to run current file without loss focus, and the result will be shown in a runner buffer. diff --git a/docs/layers/lang/slim.md b/docs/layers/lang/slim.md new file mode 100644 index 000000000..c84380316 --- /dev/null +++ b/docs/layers/lang/slim.md @@ -0,0 +1,26 @@ +--- +title: "SpaceVim lang#slim layer" +description: "This layer is for slim development, includes syntax highlighting for slim file." +--- + +# [Available Layers](../../) >> lang#slim + + + +- [Description](#description) +- [Install](#install) + + + +## Description + +This layer provides syntax highlighting for [Slim Template Language](http://slim-lang.com/). + +## Install + +To use this configuration layer, update custom configuration file with: + +```toml +[[layers]] + name = "lang#slim" +```