aboutsummaryrefslogtreecommitdiff
path: root/runtime/doc
diff options
context:
space:
mode:
authorPhạm Bình An <111893501+brianhuster@users.noreply.github.com>2025-03-18 05:41:07 +0700
committerGitHub <noreply@github.com>2025-03-17 15:41:07 -0700
commit08c328b8b079334e7fb38472339c4f8ba1a0df3b (patch)
treefc1fcbd553ad90486af0a016ca96739b7f09fbd7 /runtime/doc
parent063b69bab4ab64b614e31ab0c93279fdbebb40b7 (diff)
downloadrneovim-08c328b8b079334e7fb38472339c4f8ba1a0df3b.tar.gz
rneovim-08c328b8b079334e7fb38472339c4f8ba1a0df3b.tar.bz2
rneovim-08c328b8b079334e7fb38472339c4f8ba1a0df3b.zip
feat(runtime): Lua ftplugin 'includeexpr' #32719
Problem: Current `'includeexpr'` in runtime/ftplugin/lua.vim doesn't work with Nvim Lua. Solution: Provide an improved 'includeexpr' for Lua in "ftplugin/lua.lua". Closes: https://github.com/neovim/neovim/issues/32490
Diffstat (limited to 'runtime/doc')
-rw-r--r--runtime/doc/news.txt2
1 files changed, 2 insertions, 0 deletions
diff --git a/runtime/doc/news.txt b/runtime/doc/news.txt
index f7f86237f6..9c3ae3706c 100644
--- a/runtime/doc/news.txt
+++ b/runtime/doc/news.txt
@@ -326,6 +326,8 @@ LUA
`vim.o`, `vim.wo`, `vim.bo`, `vim.opt`, `vim.opt_local`, `vim.opt_global`,
and `vim.fn`.
• Documentation for |lua-bit|.
+• |gf| in Lua buffers can go to module in same repo, |runtime-search-path| and
+ |package.path|.
• |vim.fs.rm()| can delete files and directories.
• |vim.validate()| now has a new signature which uses less tables,
is more performant and easier to read.