diff options
author | TJ DeVries <devries.timothyj@gmail.com> | 2020-07-02 07:09:17 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-02 07:09:17 -0400 |
commit | 7b529e7912517af078e005dd7b06b3d042be9cb7 (patch) | |
tree | 07ce777cc208f93776e1a858bb3a1eac3d91bfdf /runtime/lua/vim/lsp/rpc.lua | |
parent | 2844cd54dab2893a0baa0464e8de0a01f1048b05 (diff) | |
download | rneovim-7b529e7912517af078e005dd7b06b3d042be9cb7.tar.gz rneovim-7b529e7912517af078e005dd7b06b3d042be9cb7.tar.bz2 rneovim-7b529e7912517af078e005dd7b06b3d042be9cb7.zip |
doc: fix scripts and regenerate (#12506)
* Fix some small doc issues
* doc: fixup
* doc: fixup
* Fix lint and rebase
* Remove bad advice
* Ugh, stupid mpack files...
* Don't let people include these for now until they specifically want to
* Prevent duplicate tag
Diffstat (limited to 'runtime/lua/vim/lsp/rpc.lua')
-rw-r--r-- | runtime/lua/vim/lsp/rpc.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/runtime/lua/vim/lsp/rpc.lua b/runtime/lua/vim/lsp/rpc.lua index dad1dc11f1..81c92bfe05 100644 --- a/runtime/lua/vim/lsp/rpc.lua +++ b/runtime/lua/vim/lsp/rpc.lua @@ -36,10 +36,12 @@ end --- Merges current process env with the given env and returns the result as --- a list of "k=v" strings. --- +--- <pre> --- Example: --- ---- { PRODUCTION="false", PATH="/usr/bin/", PORT=123, HOST="0.0.0.0", } ---- => { "PRODUCTION=false", "PATH=/usr/bin/", "PORT=123", "HOST=0.0.0.0", } +--- in: { PRODUCTION="false", PATH="/usr/bin/", PORT=123, HOST="0.0.0.0", } +--- out: { "PRODUCTION=false", "PATH=/usr/bin/", "PORT=123", "HOST=0.0.0.0", } +--- </pre> local function env_merge(env) if env == nil then return env |