1 -- undo/redo by managing the sequence of events in the current session
2 -- based on https://github.com/akkartik/mu1/blob/master/edit/012-editor-undo.mu
4 -- Incredibly inefficient; we make a copy of lines on every single keystroke.
5 -- The hope here is that we're either editing small files or just reading large files.
6 -- TODO: highlight stuff inserted by any undo/redo operation
7 -- TODO: coalesce multiple similar operations
9 function record_undo_event(State
, data
)
10 State
.history
[State
.next_history
] = data
11 State
.next_history
= State
.next_history
+1
12 for i
=State
.next_history
,#State
.history
do
13 State
.history
[i
] = nil
17 function undo_event(State
)
18 if State
.next_history
> 1 then
19 --? print('moving to history', State.next_history-1)
20 State
.next_history
= State
.next_history
-1
21 local result
= State
.history
[State
.next_history
]
26 function redo_event(State
)
27 if State
.next_history
<= #State
.history
then
28 --? print('restoring history', State.next_history+1)
29 local result
= State
.history
[State
.next_history
]
30 State
.next_history
= State
.next_history
+1
35 -- Copy all relevant global state.
36 -- Make copies of objects; the rest of the app may mutate them in place, but undo requires immutable histories.
37 function snapshot(State
, s
,e
)
38 -- Snapshot everything by default, but subset if requested.
39 assert(s
, 'failed to snapshot operation for undo history')
43 assert(#State
.lines
> 0, 'failed to snapshot operation for undo history')
44 if s
< 1 then s
= 1 end
45 if s
> #State
.lines
then s
= #State
.lines
end
46 if e
< 1 then e
= 1 end
47 if e
> #State
.lines
then e
= #State
.lines
end
48 -- compare with App.initialize_globals
50 screen_top
=deepcopy(State
.screen_top1
),
51 selection
=deepcopy(State
.selection1
),
52 cursor
=deepcopy(State
.cursor1
),
56 -- no filename; undo history is cleared when filename changes
59 table.insert(event
.lines
, deepcopy(State
.lines
[i
]))
64 function patch(lines
, from
, to
)
65 --? if #from.lines == 1 and #to.lines == 1 then
66 --? assert(from.start_line == from.end_line)
67 --? assert(to.start_line == to.end_line)
68 --? assert(from.start_line == to.start_line)
69 --? lines[from.start_line] = to.lines[1]
72 assert(from
.start_line
== to
.start_line
, 'failed to patch undo operation')
73 for i
=from
.end_line
,from
.start_line
,-1 do
74 table.remove(lines
, i
)
76 assert(#to
.lines
== to
.end_line
-to
.start_line
+1, 'failed to patch undo operation')
78 table.insert(lines
, to
.start_line
+i
-1, to
.lines
[i
])
82 -- https://stackoverflow.com/questions/640642/how-do-you-copy-a-lua-table-by-value/26367080#26367080
83 function deepcopy(obj
, seen
)
84 if type(obj
) ~= 'table' then return obj
end
85 if seen
and seen
[obj
] then return seen
[obj
] end
87 local result
= setmetatable({}, getmetatable(obj
))
89 for k
,v
in pairs(obj
) do
90 result
[deepcopy(k
, s
)] = deepcopy(v
, s
)
96 return math
.min(a
,b
), math
.max(a
,b
)