chore(build): auto-generate vimdoc

This commit is contained in:
github-actions[bot] 2022-12-25 13:31:44 +00:00
parent 3efb849d73
commit bdd7f0585a
1 changed files with 3 additions and 3 deletions

View File

@ -629,9 +629,9 @@ STRUCTURING YOUR PLUGINS *lazy.nvim-structuring-your-plugins*
Some users may want to split their plugin specs in multiple files. Instead of
passing a spec table to `setup()`, you can use a Lua module. The specs from the
**module** and any **sub-modules** will be merged together in the final spec,
so it is not needed to add `require` calls in your main plugin file to the
other files.
**module** and any top-level **sub-modules** will be merged together in the
final spec, so it is not needed to add `require` calls in your main plugin file
to the other files.
The benefits of using this approach: