Fixed word clumping with linebreaks.

This commit is contained in:
Bruce Hill 2018-11-09 19:32:13 -08:00
parent b5a5b7f90d
commit 771007bc4d
2 changed files with 17 additions and 14 deletions

View File

@ -281,16 +281,18 @@ tree_to_nomsu = function(tree)
end
for i, bit in ipairs(tree) do
if type(bit) == "string" then
if next_space == " " then
local clump_words
if type(tree[i - 1]) == 'string' then
clump_words = is_operator(bit) ~= is_operator(tree[i - 1])
else
clump_words = bit == "'"
end
if i > 1 and not clump_words then
nomsu:append(" ")
if clump_words then
next_space = ""
end
nomsu:append(bit)
end
nomsu:append(next_space, bit)
next_space = nomsu:trailing_line_len() > MAX_LINE and " \\\n.." or " "
else
local bit_nomsu = recurse(bit)

View File

@ -209,11 +209,12 @@ tree_to_nomsu = (tree)->
for i,bit in ipairs tree
if type(bit) == "string"
if next_space == " "
clump_words = if type(tree[i-1]) == 'string'
is_operator(bit) != is_operator(tree[i-1])
else bit == "'"
nomsu\append " " if i > 1 and not clump_words
nomsu\append bit
next_space = "" if clump_words
nomsu\append next_space, bit
next_space = nomsu\trailing_line_len! > MAX_LINE and " \\\n.." or " "
else
bit_nomsu = recurse(bit)