add var support in textDocument_foldingRange

but also has some issue
This commit is contained in:
rhcher 2022-07-01 13:29:57 +08:00
parent b1e36f60a7
commit 2b18de28cc

View File

@ -27,7 +27,8 @@ void MessageHandler::textDocument_foldingRange(TextDocumentParam &param,
for (auto [sym, refcnt] : file->symbol2refcnt)
if (refcnt > 0 && sym.extent.valid() &&
(sym.kind == Kind::Func || sym.kind == Kind::Type) &&
(sym.kind == Kind::Func || sym.kind == Kind::Type ||
sym.kind == Kind::Var) &&
(ls_range = getLsRange(wf, sym.extent))) {
FoldingRange &fold = result.emplace_back();
fold.startLine = ls_range->start.line;