Fixed word clumping with linebreaks.
This commit is contained in:
parent
b5a5b7f90d
commit
771007bc4d
@ -281,16 +281,18 @@ tree_to_nomsu = function(tree)
|
|||||||
end
|
end
|
||||||
for i, bit in ipairs(tree) do
|
for i, bit in ipairs(tree) do
|
||||||
if type(bit) == "string" then
|
if type(bit) == "string" then
|
||||||
local clump_words
|
if next_space == " " then
|
||||||
if type(tree[i - 1]) == 'string' then
|
local clump_words
|
||||||
clump_words = is_operator(bit) ~= is_operator(tree[i - 1])
|
if type(tree[i - 1]) == 'string' then
|
||||||
else
|
clump_words = is_operator(bit) ~= is_operator(tree[i - 1])
|
||||||
clump_words = bit == "'"
|
else
|
||||||
|
clump_words = bit == "'"
|
||||||
|
end
|
||||||
|
if clump_words then
|
||||||
|
next_space = ""
|
||||||
|
end
|
||||||
end
|
end
|
||||||
if i > 1 and not clump_words then
|
nomsu:append(next_space, bit)
|
||||||
nomsu:append(" ")
|
|
||||||
end
|
|
||||||
nomsu:append(bit)
|
|
||||||
next_space = nomsu:trailing_line_len() > MAX_LINE and " \\\n.." or " "
|
next_space = nomsu:trailing_line_len() > MAX_LINE and " \\\n.." or " "
|
||||||
else
|
else
|
||||||
local bit_nomsu = recurse(bit)
|
local bit_nomsu = recurse(bit)
|
||||||
|
@ -209,11 +209,12 @@ tree_to_nomsu = (tree)->
|
|||||||
|
|
||||||
for i,bit in ipairs tree
|
for i,bit in ipairs tree
|
||||||
if type(bit) == "string"
|
if type(bit) == "string"
|
||||||
clump_words = if type(tree[i-1]) == 'string'
|
if next_space == " "
|
||||||
is_operator(bit) != is_operator(tree[i-1])
|
clump_words = if type(tree[i-1]) == 'string'
|
||||||
else bit == "'"
|
is_operator(bit) != is_operator(tree[i-1])
|
||||||
nomsu\append " " if i > 1 and not clump_words
|
else bit == "'"
|
||||||
nomsu\append bit
|
next_space = "" if clump_words
|
||||||
|
nomsu\append next_space, bit
|
||||||
next_space = nomsu\trailing_line_len! > MAX_LINE and " \\\n.." or " "
|
next_space = nomsu\trailing_line_len! > MAX_LINE and " \\\n.." or " "
|
||||||
else
|
else
|
||||||
bit_nomsu = recurse(bit)
|
bit_nomsu = recurse(bit)
|
||||||
|
Loading…
Reference in New Issue
Block a user