diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2025-03-18 06:18:37 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-03-18 06:18:37 -0700 |
commit | 7333c39e6cc78786289d88c65fbe10e4ce78992b (patch) | |
tree | af0deb9a02b82c19e6bf89e2b5bc8fb9123dd5d5 /runtime/lua/vim/_meta/vvars.lua | |
parent | 29a47b39ccd0317e815632439966f0f1343d96cf (diff) | |
download | rneovim-7333c39e6cc78786289d88c65fbe10e4ce78992b.tar.gz rneovim-7333c39e6cc78786289d88c65fbe10e4ce78992b.tar.bz2 rneovim-7333c39e6cc78786289d88c65fbe10e4ce78992b.zip |
docs: misc #32959
Diffstat (limited to 'runtime/lua/vim/_meta/vvars.lua')
-rw-r--r-- | runtime/lua/vim/_meta/vvars.lua | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/runtime/lua/vim/_meta/vvars.lua b/runtime/lua/vim/_meta/vvars.lua index 9df5a0b5f2..25e504a612 100644 --- a/runtime/lua/vim/_meta/vvars.lua +++ b/runtime/lua/vim/_meta/vvars.lua @@ -586,8 +586,9 @@ vim.v.searchforward = ... --- Read-only. --- --- *$NVIM* ---- $NVIM is set by `terminal` and `jobstart()`, and is thus ---- a hint that the current environment is a subprocess of Nvim. +--- $NVIM is set to v:servername by `terminal` and `jobstart()`, +--- and is thus a hint that the current environment is a child +--- (direct subprocess) of Nvim. --- --- Example: a child Nvim process can detect and make requests to --- its parent Nvim: |