mirror of
https://github.com/neovim/neovim.git
synced 2026-02-06 03:47:20 +00:00
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
This commit is contained in:
@@ -1,9 +1,10 @@
|
||||
-- use treesitter over syntax
|
||||
vim.treesitter.start()
|
||||
|
||||
vim.bo.includeexpr = 'v:lua.require"vim._ftplugin.lua".includeexpr()'
|
||||
vim.bo.omnifunc = 'v:lua.vim.lua_omnifunc'
|
||||
vim.wo[0][0].foldexpr = 'v:lua.vim.treesitter.foldexpr()'
|
||||
|
||||
vim.b.undo_ftplugin = (vim.b.undo_ftplugin or '')
|
||||
.. '\n call v:lua.vim.treesitter.stop()'
|
||||
.. '\n setl omnifunc< foldexpr<'
|
||||
.. '\n setl omnifunc< foldexpr< includeexpr<'
|
||||
|
||||
Reference in New Issue
Block a user