Updated doc.
This commit is contained in:
parent
9e090da0b9
commit
2c367e01d7
@ -35,5 +35,7 @@ a nil value do not call `error()`, so the debugger won't get triggered.
|
|||||||
* Arrow keys or h/j/k/l for movement within the active pane (yellow border); scroll wheel also works, but only for vertical scrolling. Shift+h/j/k/l moves 10 lines at a time.
|
* Arrow keys or h/j/k/l for movement within the active pane (yellow border); scroll wheel also works, but only for vertical scrolling. Shift+h/j/k/l moves 10 lines at a time.
|
||||||
* Press 'c' to select the call stack pane
|
* Press 'c' to select the call stack pane
|
||||||
* Press 's' to select the source code pane (showing the source code for the file of the function selected in the callstack pane)
|
* Press 's' to select the source code pane (showing the source code for the file of the function selected in the callstack pane)
|
||||||
|
* Press 'o' to open the selected file to the selected line in your system's default editor (`$EDITOR`)
|
||||||
* Press 'v' to select the variables pane (showing the variables at the selected level of the callstack)
|
* Press 'v' to select the variables pane (showing the variables at the selected level of the callstack)
|
||||||
* Press 'd' to select the data pane (showing the value of the selected variable)
|
* Press 'd' to select the data pane (showing the value of the selected variable)
|
||||||
|
* In the data pane, 'l'/right will expand table entries, and 'h'/left will collapse table entries.
|
||||||
|
2
ldt.lua
2
ldt.lua
@ -1249,7 +1249,7 @@ ldb = {
|
|||||||
stdscr:clear()
|
stdscr:clear()
|
||||||
stdscr:refresh()
|
stdscr:refresh()
|
||||||
for _, pad in pairs(pads) do
|
for _, pad in pairs(pads) do
|
||||||
pad:refresh()
|
pad:refresh(true)
|
||||||
end
|
end
|
||||||
elseif C.KEY_RESIZE == _exp_0 then
|
elseif C.KEY_RESIZE == _exp_0 then
|
||||||
SCREEN_H, SCREEN_W = stdscr:getmaxyx()
|
SCREEN_H, SCREEN_W = stdscr:getmaxyx()
|
||||||
|
2
ldt.moon
2
ldt.moon
@ -863,7 +863,7 @@ ldb = {
|
|||||||
C.use_default_colors!
|
C.use_default_colors!
|
||||||
stdscr\clear!
|
stdscr\clear!
|
||||||
stdscr\refresh!
|
stdscr\refresh!
|
||||||
for _,pad in pairs(pads) do pad\refresh!
|
for _,pad in pairs(pads) do pad\refresh(true)
|
||||||
|
|
||||||
when C.KEY_RESIZE
|
when C.KEY_RESIZE
|
||||||
SCREEN_H, SCREEN_W = stdscr\getmaxyx!
|
SCREEN_H, SCREEN_W = stdscr\getmaxyx!
|
||||||
|
Loading…
Reference in New Issue
Block a user