diff options
author | Lewis Russell <lewis6991@gmail.com> | 2023-07-28 14:48:41 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-28 14:48:41 +0100 |
commit | 42333ea98dfcd2994ee128a3467dfe68205154cd (patch) | |
tree | 79df4cf00f96ce5d9c549c12533253722e200461 /runtime/doc/lua.txt | |
parent | c1c2a1b5dd1d73e5e97b94e6626aaac25a3db9bc (diff) | |
download | rneovim-42333ea98dfcd2994ee128a3467dfe68205154cd.tar.gz rneovim-42333ea98dfcd2994ee128a3467dfe68205154cd.tar.bz2 rneovim-42333ea98dfcd2994ee128a3467dfe68205154cd.zip |
feat(docs): generate builtin.txt (#24493)
- eval.lua is now the source of truth.
- Formatting is much more consistent.
- Fixed Lua type generation for polymorphic functions (get(), etc).
- Removed "Overview" section from builtin.txt
- Can generate this if we really want it.
- Moved functions from sign.txt and testing.txt into builtin.txt.
- Removed the *timer* *timers* tags since libuv timers via vim.uv should be preferred.
- Removed the temp-file-name tag from tempname()
- Moved lueval() from lua.txt to builtin.txt.
* Fix indent
* fixup!
* fixup! fixup!
* fixup! better tag formatting
* fixup: revert changes no longer needed
* fixup! CI
---------
Co-authored-by: zeertzjq <zeertzjq@outlook.com>
Diffstat (limited to 'runtime/doc/lua.txt')
-rw-r--r-- | runtime/doc/lua.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/doc/lua.txt b/runtime/doc/lua.txt index 6a839b205c..660d930f5f 100644 --- a/runtime/doc/lua.txt +++ b/runtime/doc/lua.txt @@ -296,7 +296,7 @@ arguments separated by " " (space) instead of "\t" (tab). < ============================================================================== -luaeval() *lua-eval* *luaeval()* +luaeval() *lua-eval* The (dual) equivalent of "vim.eval" for passing Lua values to Nvim is "luaeval". "luaeval" takes an expression string and an optional argument used |