fix: remove unused key release and uniform key layout options

Ayman Bagabas created

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.

Change summary

cmd/root.go | 2 --
1 file changed, 2 deletions(-)

Detailed changes

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
 		)