Merge pull request #383 from danschwarz/lkey

Changed [L]inks key to L[i]nks so that L key is CURSOR RIGHT
This commit is contained in:
Ivan Habunek 2023-07-06 15:26:55 +02:00 committed by GitHub
commit 207b6dadb2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

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