Implement new search window

This commit is contained in:
krzosa
2025-12-23 08:52:42 +01:00
parent edc941bf53
commit c67db4e495
8 changed files with 55 additions and 11 deletions

View File

@@ -388,7 +388,6 @@ void OnCommand(Event event) {
BSet main = GetBSet(LastActiveLayoutWindowID);
BSet active = GetBSet(ActiveWindowID);
Int buffer_change_id = active.buffer->change_id;
For (CommandFunctions) {
if (it.trigger && MatchEvent(it.trigger, &event)) {
@@ -514,12 +513,15 @@ void Update(Event event) {
view->update_scroll = true;
}
OnCommand(event);
StatusWindowUpdate();
DebugWindowUpdate();
CommandWindowUpdate();
SearchWindowUpdate();
UpdateProcesses();
CoUpdate(&event);
For (Buffers) it->begin_frame_change_id = it->change_id; // after last place we modify
{
ProfileScope(WindowEndOfFrameVisibilityAndLastActive);