From 4baeaaf499449edb9d681b7c5d105e4094b39bee Mon Sep 17 00:00:00 2001 From: Ayman Bagabas Date: Mon, 14 Jul 2025 17:11:42 -0400 Subject: [PATCH] fix: remove unused key release and uniform key layout options We don't need these options unless we need key release, which are not used in the codebase, or uniform key where we need to handle Unicode key events, which we don't. --- cmd/root.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/cmd/root.go b/cmd/root.go index 9ae26b993dd1be7374907305ae4cc90036cb05d6..c02dea5d2b7882291fa78f2bb7346a0cc3fefe82 100644 --- a/cmd/root.go +++ b/cmd/root.go @@ -107,8 +107,6 @@ to assist developers in writing, debugging, and understanding code directly from program := tea.NewProgram( tui.New(app), tea.WithAltScreen(), - tea.WithKeyReleases(), - tea.WithUniformKeyLayout(), tea.WithMouseCellMotion(), // Use cell motion instead of all motion to reduce event flooding tea.WithFilter(tui.MouseEventFilter), // Filter mouse events based on focus state )