fix(treesitter): allow foldexpr without highlights (#23672)

Ref nvim-treesitter/nvim-treesitter#4748
This commit is contained in:
Lewis Russell
2023-05-18 10:52:01 +01:00
committed by GitHub
parent c9f47fca8b
commit ef64e225f6
2 changed files with 2 additions and 12 deletions

View File

@@ -301,7 +301,8 @@ function M.foldexpr(lnum)
lnum = lnum or vim.v.lnum
local bufnr = api.nvim_get_current_buf()
if not ts._has_parser(bufnr) or not lnum then
local parser = vim.F.npcall(ts.get_parser, bufnr)
if not parser then
return '0'
end
@@ -309,7 +310,6 @@ function M.foldexpr(lnum)
foldinfos[bufnr] = FoldInfo.new()
get_folds_levels(bufnr, foldinfos[bufnr])
local parser = ts.get_parser(bufnr)
parser:register_cbs({
on_changedtree = function(tree_changes)
on_changedtree(bufnr, foldinfos[bufnr], tree_changes)