diff options
-rw-r--r-- | edit.lua | 1 | ||||
-rw-r--r-- | source_edit.lua | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/edit.lua b/edit.lua index 118e0ea..9a223bf 100644 --- a/edit.lua +++ b/edit.lua @@ -184,6 +184,7 @@ function edit.draw(State) State.cursor1.line = State.cursor1.line+1 end record_undo_event(State, {before=Drawing.before, after=snapshot(State, line_index-1, line_index+1)}) + Drawing.before = nil schedule_save(State) end, }) diff --git a/source_edit.lua b/source_edit.lua index fead6c5..f92ca0f 100644 --- a/source_edit.lua +++ b/source_edit.lua @@ -190,6 +190,7 @@ function edit.draw(State, hide_cursor, show_line_numbers) State.cursor1.line = State.cursor1.line+1 end record_undo_event(State, {before=Drawing.before, after=snapshot(State, line_index-1, line_index+1)}) + Drawing.before = nil schedule_save(State) end, }) |