neovim

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

commit 44d4ae448d0ab357a3aade773ea58c66c3c969cc
parent d3a22ff242526e36e6e5b76fdc70656dd3d7ca31
Author: Matthieu Coudron <teto@users.noreply.github.com>
Date:   Fri, 26 May 2023 21:51:18 +0200

fix: function was renamed (#23772)


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

diff --git 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+')