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/_editor.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/_editor.lua')
-rw-r--r-- | runtime/lua/vim/_editor.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/lua/vim/_editor.lua b/runtime/lua/vim/_editor.lua index e29d8f1c30..c9b8e68c10 100644 --- a/runtime/lua/vim/_editor.lua +++ b/runtime/lua/vim/_editor.lua @@ -8,7 +8,7 @@ -- - "opt-in": runtime/pack/dist/opt/ -- 2. runtime/lua/vim/ (the runtime): Lazy-loaded modules. Examples: `inspect`, `lpeg`. -- 3. runtime/lua/vim/shared.lua: pure Lua functions which always are available. Used in the test --- runner, as well as worker threads and processes launched from Nvim. +-- runner, and worker threads/processes launched from Nvim. -- 4. runtime/lua/vim/_editor.lua: Eager-loaded code which directly interacts with the Nvim -- editor state. Only available in the main thread. -- |