From 44d4ae448d0ab357a3aade773ea58c66c3c969cc Mon Sep 17 00:00:00 2001 From: Matthieu Coudron Date: Fri, 26 May 2023 21:51:18 +0200 Subject: fix: function was renamed (#23772) --- runtime/lua/vim/treesitter/languagetree.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'runtime/lua/vim') diff --git a/runtime/lua/vim/treesitter/languagetree.lua b/runtime/lua/vim/treesitter/languagetree.lua index 6c780f33c4..244d88f3e0 100644 --- a/runtime/lua/vim/treesitter/languagetree.lua +++ b/runtime/lua/vim/treesitter/languagetree.lua @@ -143,7 +143,7 @@ function LanguageTree:_set_logger() local lang = self:lang() - local logfilename = vim.fs._join_paths(vim.fn.stdpath('log'), 'treesitter.log') + local logfilename = vim.fs.joinpath(vim.fn.stdpath('log'), 'treesitter.log') local logfile, openerr = io.open(logfilename, 'a+') -- cgit