delete one more field from file format

This commit is contained in:
Kartik K. Agaram 2023-04-20 22:10:06 -07:00
parent 49dbb69617
commit db0e15dfa6
1 changed files with 2 additions and 1 deletions

View File

@ -9,6 +9,7 @@ save_graph_to_disk = function()
table.insert(v.data, l.data)
end
v.editor = nil
v.show_cursor = nil
table.insert(kvs, {k, v})
end
-- sort the copy to avoid spurious diffs in version control
@ -24,4 +25,4 @@ save_graph_to_disk = function()
end
f:write('}}\n')
f:close()
end
end