From 8b919bc2d3c57439d70aa60877f8fd0636cc0a81 Mon Sep 17 00:00:00 2001 From: qowevisa Date: Fri, 15 Mar 2024 17:44:19 +0200 Subject: [PATCH] Fix issue with iota on tui/table.go --- tui/table.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tui/table.go b/tui/table.go index 3c8f0a5..090e4a3 100644 --- a/tui/table.go +++ b/tui/table.go @@ -1,7 +1,7 @@ package tui const ( - CTRL_A = 1 << iota + CTRL_A = 1 + iota CTRL_B CTRL_C CTRL_D