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

17
ldt.lua
View File

@ -38,8 +38,11 @@ wrap_text = function(text, width)
while #line > width do while #line > width do
table.insert(lines, line:sub(1, width)) table.insert(lines, line:sub(1, width))
line = line:sub(width + 1, -1) line = line:sub(width + 1, -1)
if #line == 0 then
line = nil
end
end end
if #line > 0 then if line then
table.insert(lines, line) table.insert(lines, line)
end end
end end
@ -1074,7 +1077,7 @@ ldb = {
max_fn_name = math.max(max_fn_name, #stack_names[i]) max_fn_name = math.max(max_fn_name, #stack_names[i])
max_filename = math.max(max_filename, #stack_locations[i]) max_filename = math.max(max_filename, #stack_locations[i])
end 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)) 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) 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") return (i == self.selected) and Color("black on green") or Color("green bold")
@ -1266,8 +1269,10 @@ ldb = {
selected_pad:refresh() selected_pad:refresh()
end end
selected_pad = pad selected_pad = pad
selected_pad:set_active(true) if selected_pad then
return selected_pad:refresh() selected_pad:set_active(true)
return selected_pad:refresh()
end
end end
end end
select_pad(pads.stack) select_pad(pads.stack)
@ -1464,7 +1469,9 @@ ldb = {
end end
end end
else else
selected_pad:keypress(c) if selected_pad then
selected_pad:keypress(c)
end
end end
end end
return C.endwin() return C.endwin()

View File

@ -36,7 +36,9 @@ wrap_text = (text, width)->
while #line > width while #line > width
table.insert(lines, line\sub(1,width)) table.insert(lines, line\sub(1,width))
line = line\sub(width+1,-1) line = line\sub(width+1,-1)
if #line > 0 if #line == 0
line = nil
if line
table.insert(lines, line) table.insert(lines, line)
return lines return lines
@ -701,7 +703,7 @@ ldb = {
max_fn_name = math.max(max_fn_name, #stack_names[i]) max_fn_name = math.max(max_fn_name, #stack_names[i])
max_filename = math.max(max_filename, #stack_locations[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)) 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, 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")), stack_names, ((i)=> (i == @selected) and Color("black on green") or Color("green bold")),
@ -823,8 +825,9 @@ ldb = {
selected_pad\set_active(false) selected_pad\set_active(false)
selected_pad\refresh! selected_pad\refresh!
selected_pad = pad selected_pad = pad
selected_pad\set_active(true) if selected_pad
selected_pad\refresh! selected_pad\set_active(true)
selected_pad\refresh!
select_pad(pads.stack) select_pad(pads.stack)
@ -989,7 +992,8 @@ ldb = {
break break
else else
selected_pad\keypress(c) if selected_pad
selected_pad\keypress(c)
C.endwin! C.endwin!