We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
doc.class
doc.type
1 parent 7538419 commit cd6b80dCopy full SHA for cd6b80d
script/parser/luadoc.lua
@@ -1310,6 +1310,16 @@ local function isNextLine(binded, doc)
1310
return false
1311
end
1312
local lastDoc = binded[#binded]
1313
+ if lastDoc.type == 'doc.type' then
1314
+ return false
1315
+ end
1316
+ if lastDoc.type == 'doc.class'
1317
+ or lastDoc.type == 'doc.field' then
1318
+ if doc.type ~= 'doc.field'
1319
+ and doc.type ~= 'doc.comment' then
1320
1321
1322
1323
local lastRow = guide.rowColOf(lastDoc.finish)
1324
local newRow = guide.rowColOf(doc.start)
1325
return newRow - lastRow == 1
0 commit comments