From 3402a54a2e30e4a12ef634f893efec45951faea5 Mon Sep 17 00:00:00 2001 From: CJ van den Berg Date: Mon, 26 Jan 2026 21:36:57 +0100 Subject: [PATCH] fix: don't remove secondary cursors when cancelling dropdown completion --- src/tui/mode/overlay/completion_dropdown.zig | 1 - 1 file changed, 1 deletion(-) diff --git a/src/tui/mode/overlay/completion_dropdown.zig b/src/tui/mode/overlay/completion_dropdown.zig index ccb4205..c6a929c 100644 --- a/src/tui/mode/overlay/completion_dropdown.zig +++ b/src/tui/mode/overlay/completion_dropdown.zig @@ -337,7 +337,6 @@ pub fn updated(self: *Type, button_: ?*Type.ButtonType) !void { pub fn cancel(_: *Type) !void { const editor = tui.get_active_editor() orelse return; editor.cancel_all_matches(); - editor.cancel_all_selections(); const mv = tui.mainview() orelse return; mv.cancel_info_content() catch {}; }