Merge pull request #53261 from Razoric480/lsp_crash_vim_ale
This commit is contained in:
commit
23f21ac45e
1 changed files with 5 additions and 3 deletions
|
@ -409,10 +409,12 @@ String ExtendGDScriptParser::parse_documentation(int p_line, bool p_docs_down) {
|
|||
doc_lines.push_front(line_comment);
|
||||
}
|
||||
} else {
|
||||
String next_line = lines[MAX(0, i + step)].strip_edges(true, false);
|
||||
if (i > 0 && i < lines.size() - 1) {
|
||||
String next_line = lines[i + step].strip_edges(true, false);
|
||||
if (next_line.begins_with("#")) {
|
||||
continue;
|
||||
}
|
||||
}
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue