neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 6a4ebf894fa39bfb09695a129a3300cb99408542
parent 19110eddb96a125dd391d2a215e04a7ae376ccf1
Author: Sizhe Zhao <prc.zhao@outlook.com>
Date:   Sat,  1 Apr 2023 21:47:20 +0800

fix(health): stop using deprecated ts.language.inspect_language() (#22850)


Diffstat:
Mruntime/lua/vim/treesitter/health.lua | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/runtime/lua/vim/treesitter/health.lua b/runtime/lua/vim/treesitter/health.lua @@ -22,7 +22,7 @@ function M.check() ) ) else - local lang = ts.language.inspect_language(parsername) + local lang = ts.language.inspect(parsername) health.report_ok( string.format('Parser: %-10s ABI: %d, path: %s', parsername, lang._abi_version, parser) )