Merge pull request #383 from danschwarz/lkey

Changed [L]inks key to L[i]nks so that L key is CURSOR RIGHT
pull/384/head
Ivan Habunek 2023-07-06 15:26:55 +02:00 zatwierdzone przez GitHub
commit 207b6dadb2
Nie znaleziono w bazie danych klucza dla tego podpisu
ID klucza GPG: 4AEE18F83AFDEB23
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -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