feat(ftplugin): set Lua 'omnifunc' to vim.lua_omnifunc #32491

Problem:
- Many other ftplugin have defined 'omnifunc', but the Lua one doesn't
  define one, even though there is `vim.lua_omnifunc()`
- Users may want "stupid" completion to fix Lua config with
  `nvim --clean` in case they breaks it

Solution:
Set 'omnifunc' to 'v:lua.vim.lua_omnifunc' in ftplugin/lua.lua
This commit is contained in:
Phạm Bình An
2025-02-23 22:57:16 +07:00
committed by GitHub
parent b283736388
commit f398e3a61a
3 changed files with 12 additions and 1 deletions

View File

@@ -1,4 +1,7 @@
-- use treesitter over syntax
vim.treesitter.start()
vim.b.undo_ftplugin = (vim.b.undo_ftplugin or '') .. '\n call v:lua.vim.treesitter.stop()'
vim.bo.omnifunc = 'v:lua.vim.lua_omnifunc'
vim.b.undo_ftplugin = (vim.b.undo_ftplugin or '')
.. '\n call v:lua.vim.treesitter.stop() \n setl omnifunc<'