Merge lines.love

This commit is contained in:
Kartik K. Agaram 2022-12-12 22:45:16 -08:00
commit 3897a9d86d
1 changed files with 6 additions and 1 deletions

View File

@ -180,12 +180,12 @@ function edit.mouse_released(State, x,y, mouse_button)
end
function edit.textinput(State, t)
for _,line_cache in ipairs(State.line_cache) do line_cache.starty = nil end -- just in case we scroll
if State.search_term then
State.search_term = State.search_term..t
State.search_text = nil
Text.search_next(State)
else
for _,line_cache in ipairs(State.line_cache) do line_cache.starty = nil end -- just in case we scroll
Text.textinput(State, t)
end
schedule_save(State)
@ -346,6 +346,7 @@ function edit.run_after_textinput(State, t)
edit.textinput(State, t)
edit.key_released(State, t)
App.screen.contents = {}
edit.update(State, 0)
edit.draw(State)
end
@ -354,6 +355,7 @@ function edit.run_after_keychord(State, chord)
edit.keychord_pressed(State, chord)
edit.key_released(State, chord)
App.screen.contents = {}
edit.update(State, 0)
edit.draw(State)
end
@ -363,6 +365,7 @@ function edit.run_after_mouse_click(State, x,y, mouse_button)
App.fake_mouse_release(x,y, mouse_button)
edit.mouse_released(State, x,y, mouse_button)
App.screen.contents = {}
edit.update(State, 0)
edit.draw(State)
end
@ -370,6 +373,7 @@ function edit.run_after_mouse_press(State, x,y, mouse_button)
App.fake_mouse_press(x,y, mouse_button)
edit.mouse_pressed(State, x,y, mouse_button)
App.screen.contents = {}
edit.update(State, 0)
edit.draw(State)
end
@ -377,5 +381,6 @@ function edit.run_after_mouse_release(State, x,y, mouse_button)
App.fake_mouse_release(x,y, mouse_button)
edit.mouse_released(State, x,y, mouse_button)
App.screen.contents = {}
edit.update(State, 0)
edit.draw(State)
end