1
0
mirror of https://github.com/SpaceVim/SpaceVim.git synced 2025-03-13 02:05:40 +08:00

docs(runner): update the doc of code runner

This commit is contained in:
wsdjeg 2023-03-31 23:38:01 +08:00
parent c4e7b5c744
commit 34934b2bd7
2 changed files with 33 additions and 0 deletions

View File

@ -19,6 +19,22 @@
" q close coder runner window
" i insert text to background process
" <
"
" @subsection defined a runner
"
" 1. The runner can be a string. which will be running directly.
"
" 2. The runner also can be a list with two items. each item has following
" structure.
"
" >
" {
" "exe" : String,
" "opt" : a List of arguments,
" "targetopt" : String, the target option,
" "usestdin" : Bollean,
" }
" <
let s:runners = {}

View File

@ -6228,6 +6228,23 @@ KEY BINDINGS
i insert text to background process
<
DEFINED A RUNNER
1. The runner can be a string. which will be running directly.
2. The runner also can be a list with two items. each item has following
structure.
>
{
"exe" : String,
"opt" : a List of arguments,
"targetopt" : String, the target option,
"usestdin" : Bollean,
}
<
==============================================================================
TAB MANAGER *SpaceVim-plugins-tabmanager*