mirror of
https://github.com/SpaceVim/SpaceVim.git
synced 2025-01-23 12:50:04 +08:00
Fix type in layer page
merge https://github.com/SpaceVim/SpaceVim/pull/4051
This commit is contained in:
parent
52bbc0c408
commit
5b7607a11a
@ -657,7 +657,7 @@ doesn't work as expected because a mapping is missing. In that case, the
|
||||
conflicting mappings should be resolved by either disabling the conflicting
|
||||
mapping or creating a custom mappings.
|
||||
|
||||
In order to make custom mappings easier and prevent overwritting existing
|
||||
In order to make custom mappings easier and prevent overwriting existing
|
||||
ones, delimitMate uses the |<Plug>| + |hasmapto()| (|usr_41.txt|) construct
|
||||
for its mappings.
|
||||
|
||||
|
@ -33,7 +33,7 @@ lang: zh
|
||||
|
||||
### 交互式编程
|
||||
|
||||
启动 `walframscript` 交互进程,快捷键为: `SPC l s i`。
|
||||
启动 `wolframscript` 交互进程,快捷键为: `SPC l s i`。
|
||||
|
||||
将代码传输给 REPL 进程执行:
|
||||
|
||||
|
@ -152,7 +152,7 @@ Some layers are enabled by default. The following example shows how to disable `
|
||||
| [lang#pony](lang/pony/) | This layer is for pony development, provide syntax checking, code runner and repl support for pony file. |
|
||||
| [lang#povray](lang/povray/) | This layer is for povray development, provide syntax highlighting, viewing images. |
|
||||
| [lang#powershell](lang/powershell/) | This layer is for powershell development, provide syntax checking, code runner and repl support for powershell file. |
|
||||
| [lang#processing](lang/processing/) | This layer is for working on Processing sketches. It provides sytnax checking and an app runner |
|
||||
| [lang#processing](lang/processing/) | This layer is for working on Processing sketches. It provides syntax checking and an app runner |
|
||||
| [lang#prolog](lang/prolog/) | This layer is for Prolog development, provide syntax checking, code runner and repl support for prolog file. |
|
||||
| [lang#puppet](lang/puppet/) | This layer adds Puppet language support to SpaceVim |
|
||||
| [lang#purescript](lang/purescript/) | This layer is for PureScript development, provide autocompletion, syntax checking, code format for PureScript file. |
|
||||
@ -174,9 +174,9 @@ Some layers are enabled by default. The following example shows how to disable `
|
||||
| [lang#typescript](lang/typescript/) | This layer is for TypeScript development, includding code completion, Syntax lint, and doc generation. |
|
||||
| [lang#v](lang/v/) | This layer is for v development, provide syntax checking, code runner and repl support for v file. |
|
||||
| [lang#vbnet](lang/vbnet/) | This layer is for Visual Basic .NET development, provide code runner vb file. |
|
||||
| [lang#vim](lang/vim/) | This layer is for writting Vimscript, including code completion, syntax checking and buffer formatting |
|
||||
| [lang#vim](lang/vim/) | This layer is for writing Vimscript, including code completion, syntax checking and buffer formatting |
|
||||
| [lang#vue](lang/vue/) | This layer adds Vue language support to SpaceVim |
|
||||
| [lang#wolfram](lang/wolfram/) | This layer is for walfram development, provide syntax checking, code runner and repl support for walfram file. |
|
||||
| [lang#wolfram](lang/wolfram/) | This layer is for wolfram development, provide syntax checking, code runner and repl support for wolfram file. |
|
||||
| [lang#xml](lang/xml/) | This layer is for xml development, provide syntax checking, indent etc. |
|
||||
| [lang#zig](lang/zig/) | This layer is for zig development, provide code runner support for zig file. |
|
||||
| [language-server-protocol](language-server-protocol/) | This layers provides language server protocol for vim and neovim |
|
||||
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
title: "SpaceVim lang#processing layer"
|
||||
description: "This layer is for working on Processing sketches. It provides sytnax checking and an app runner"
|
||||
description: "This layer is for working on Processing sketches. It provides syntax checking and an app runner"
|
||||
---
|
||||
|
||||
# [Available Layers](../../) >> lang#processing
|
||||
|
@ -1,6 +1,6 @@
|
||||
---
|
||||
title: "SpaceVim lang#vim layer"
|
||||
description: "This layer is for writting Vimscript, including code completion, syntax checking and buffer formatting"
|
||||
description: "This layer is for writing Vimscript, including code completion, syntax checking and buffer formatting"
|
||||
---
|
||||
|
||||
# [Available Layers](../../) >> lang#vim
|
||||
@ -16,7 +16,7 @@ description: "This layer is for writting Vimscript, including code completion, s
|
||||
|
||||
## Description
|
||||
|
||||
This layer is for writting vim script, including code completion, syntax checking and buffer formatting
|
||||
This layer is for writing vim script, including code completion, syntax checking and buffer formatting
|
||||
|
||||
## Install
|
||||
|
||||
|
@ -1,9 +1,9 @@
|
||||
---
|
||||
title: "SpaceVim lang#walfram layer"
|
||||
description: "This layer is for walfram development, provide syntax checking, code runner and repl support for walfram file."
|
||||
title: "SpaceVim lang#wolfram layer"
|
||||
description: "This layer is for wolfram development, provide syntax checking, code runner and repl support for wolfram file."
|
||||
---
|
||||
|
||||
# [Available Layers](../../) >> lang#walfram
|
||||
# [Available Layers](../../) >> lang#wolfram
|
||||
|
||||
<!-- vim-markdown-toc GFM -->
|
||||
|
||||
@ -28,7 +28,7 @@ To use this configuration layer, update custom configuration file with:
|
||||
|
||||
```toml
|
||||
[[layers]]
|
||||
name = "lang#walfram"
|
||||
name = "lang#wolfram"
|
||||
```
|
||||
## Features
|
||||
|
||||
@ -39,11 +39,11 @@ To use this configuration layer, update custom configuration file with:
|
||||
|
||||
### Running current script
|
||||
|
||||
To running a walfram file, you can press `SPC l r` to run current file without loss focus, and the result will be shown in a runner buffer.
|
||||
To running a wolfram file, you can press `SPC l r` to run current file without loss focus, and the result will be shown in a runner buffer.
|
||||
|
||||
### Inferior REPL process
|
||||
|
||||
Start a `walframscript` inferior REPL process with `SPC l s i`.
|
||||
Start a `wolframscript` inferior REPL process with `SPC l s i`.
|
||||
|
||||
Send code to inferior process commands:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user