Minor fixes, including for blank lines in wrapped text.

This commit is contained in:
Bruce Hill 2018-05-02 17:15:40 -07:00
parent a3357f1fc3
commit ad334872b5
2 changed files with 21 additions and 10 deletions

11
ldt.lua
View File

@ -38,8 +38,11 @@ wrap_text = function(text, width)
while #line > width do
table.insert(lines, line:sub(1, width))
line = line:sub(width + 1, -1)
if #line == 0 then
line = nil
end
if #line > 0 then
end
if line then
table.insert(lines, line)
end
end
@ -1074,7 +1077,7 @@ ldb = {
max_fn_name = math.max(max_fn_name, #stack_names[i])
max_filename = math.max(max_filename, #stack_locations[i])
end
local stack_h = math.max(#stack_names + 2, math.floor(2 / 3 * SCREEN_H))
local stack_h = math.floor(SCREEN_H * .6)
local stack_w = math.min(max_fn_name + 3 + max_filename, math.floor(1 / 3 * SCREEN_W))
pads.stack = Pad("(C)allstack", pads.err.height, SCREEN_W - stack_w, stack_h, stack_w, stack_names, (function(self, i)
return (i == self.selected) and Color("black on green") or Color("green bold")
@ -1266,10 +1269,12 @@ ldb = {
selected_pad:refresh()
end
selected_pad = pad
if selected_pad then
selected_pad:set_active(true)
return selected_pad:refresh()
end
end
end
select_pad(pads.stack)
while true do
for _, p in pairs(pads) do
@ -1464,9 +1469,11 @@ ldb = {
end
end
else
if selected_pad then
selected_pad:keypress(c)
end
end
end
return C.endwin()
end,
guard = function(fn, ...)

View File

@ -36,7 +36,9 @@ wrap_text = (text, width)->
while #line > width
table.insert(lines, line\sub(1,width))
line = line\sub(width+1,-1)
if #line > 0
if #line == 0
line = nil
if line
table.insert(lines, line)
return lines
@ -701,7 +703,7 @@ ldb = {
max_fn_name = math.max(max_fn_name, #stack_names[i])
max_filename = math.max(max_filename, #stack_locations[i])
stack_h = math.max(#stack_names+2, math.floor(2/3*SCREEN_H))
stack_h = math.floor(SCREEN_H*.6)--math.max(#stack_names+2, math.floor(2/3*SCREEN_H))
stack_w = math.min(max_fn_name + 3 + max_filename, math.floor(1/3*SCREEN_W))
pads.stack = Pad "(C)allstack",pads.err.height,SCREEN_W-stack_w,stack_h,stack_w,
stack_names, ((i)=> (i == @selected) and Color("black on green") or Color("green bold")),
@ -823,6 +825,7 @@ ldb = {
selected_pad\set_active(false)
selected_pad\refresh!
selected_pad = pad
if selected_pad
selected_pad\set_active(true)
selected_pad\refresh!
@ -989,6 +992,7 @@ ldb = {
break
else
if selected_pad
selected_pad\keypress(c)
C.endwin!