diff options
author | Matthieu Coudron <teto@users.noreply.github.com> | 2023-05-26 21:51:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-26 21:51:18 +0200 |
commit | 44d4ae448d0ab357a3aade773ea58c66c3c969cc (patch) | |
tree | 59638cb94f6665389d964ea4809cc7d17a9e0b7d /runtime/lua/vim | |
parent | d3a22ff242526e36e6e5b76fdc70656dd3d7ca31 (diff) | |
download | rneovim-44d4ae448d0ab357a3aade773ea58c66c3c969cc.tar.gz rneovim-44d4ae448d0ab357a3aade773ea58c66c3c969cc.tar.bz2 rneovim-44d4ae448d0ab357a3aade773ea58c66c3c969cc.zip |
fix: function was renamed (#23772)
Diffstat (limited to 'runtime/lua/vim')
-rw-r--r-- | runtime/lua/vim/treesitter/languagetree.lua | 2 |
1 files changed, 1 insertions, 1 deletions
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+') |