add some vertical space between comments

This commit is contained in:
Kartik K. Agaram 2023-06-20 22:39:45 -07:00
parent df1dc8c4b9
commit ea0b96bf04
2 changed files with 2 additions and 1 deletions

View File

@ -4,7 +4,7 @@ load_subtree = function(filename, out, depth)
local item = initialize_item(filename, depth)
-- every item is a row consisting of two columns:
-- one column of padding and another of text
local row = cols()
local row = cols(Inter_comment_spacing)
table.insert(row.data,
{type='rectangle', w=depth*Indent, h=0})
table.insert(row.data, item)

View File

@ -0,0 +1 @@
Inter_comment_spacing = 40