summaryrefslogtreecommitdiffstatshomepage
path: root/runtime/lua/vim/_editor.lua
diff options
context:
space:
mode:
authorMaria José Solano <majosolano99@gmail.com>2025-05-10 16:42:48 -0500
committerGitHub <noreply@github.com>2025-05-10 14:42:48 -0700
commitbee45fc0e7801396951cd156c82953cbadc256b9 (patch)
tree7050ebad3cc09f0a85757fe13ad86b2dfa5e86db /runtime/lua/vim/_editor.lua
parent8605f5655bd8f52d1c4f259d39630b9140f07476 (diff)
refactor(docs): remove unnecessary `@private`/`@nodoc` annotations (#33951)
* refactor(docs): remove `@private` annotations from local functions * refactor(docs): remove unnecessary `@nodoc` annotations
Diffstat (limited to 'runtime/lua/vim/_editor.lua')
-rw-r--r--runtime/lua/vim/_editor.lua2
1 files changed, 0 insertions, 2 deletions
diff --git a/runtime/lua/vim/_editor.lua b/runtime/lua/vim/_editor.lua
index e795c66969..e96cc56b70 100644
--- a/runtime/lua/vim/_editor.lua
+++ b/runtime/lua/vim/_editor.lua
@@ -923,8 +923,6 @@ function vim._expand_pat(pat, env)
local final_env = env
- --- @private
- ---
--- Allows submodules to be defined on a `vim.<module>` table without eager-loading the module.
---
--- Cmdline completion (`:lua vim.lsp.c<tab>`) accesses `vim.lsp._submodules` when no other candidates.