From f292468fb6acded1981ef9a16fd41e41602e2335 Mon Sep 17 00:00:00 2001 From: Daniel Schwarz Date: Thu, 6 Jul 2023 07:31:43 -0400 Subject: [PATCH] Changed [L]inks key to L[i]nks so that L key is CURSOR RIGHT --- toot/tui/timeline.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/toot/tui/timeline.py b/toot/tui/timeline.py index d8e2e23..5928cce 100644 --- a/toot/tui/timeline.py +++ b/toot/tui/timeline.py @@ -106,7 +106,7 @@ class Timeline(urwid.Columns): "[F]avourite", "[V]iew", "[T]hread" if not self.is_thread else "", - "[L]inks", + "L[i]nks", "[R]eply", "[P]oll" if poll and not poll["expired"] else "", "So[u]rce", @@ -218,7 +218,7 @@ class Timeline(urwid.Columns): self.tui.async_toggle_bookmark(self, status) return - if key in ("l", "L"): + if key in ("i", "I"): self.tui.show_links(status) return