about summary refs log tree commit diff stats
path: root/edit.lua
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2024-07-08 14:10:49 -0700
committerKartik K. Agaram <vc@akkartik.com>2024-07-08 14:10:49 -0700
commitc064f0a97df56c28d9d76a226ce152d97e40450a (patch)
tree998977f1b0f0be0581519275de2e8ef16ce775dc /edit.lua
parent5a74b6938e5a37b8b2d1f8e49039cf1cbae46a50 (diff)
downloadlines.love-c064f0a97df56c28d9d76a226ce152d97e40450a.tar.gz
delete some seemingly redundant code
We're patching line_cache and then immediately clearing it using
Text.redraw_all.
Diffstat (limited to 'edit.lua')
-rw-r--r--edit.lua1
1 files changed, 0 insertions, 1 deletions
diff --git a/edit.lua b/edit.lua
index 8424a9b..69756b7 100644
--- a/edit.lua
+++ b/edit.lua
@@ -440,7 +440,6 @@ function edit.keychord_press(State, chord, key)
       State.cursor1 = deepcopy(src.cursor)
       State.selection1 = deepcopy(src.selection)
       patch(State.lines, event.after, event.before)
-      patch_placeholders(State.line_cache, event.after, event.before)
       -- invalidate various cached bits of lines
       State.lines.current_drawing = nil
       Text.redraw_all(State)  -- if we're scrolling, reclaim all line caches to avoid memory leaks