From adf3f713a6a692928ae86775d4562904d30d5c93 Mon Sep 17 00:00:00 2001 From: Ivan Habunek Date: Tue, 27 Dec 2022 11:46:29 +0100 Subject: [PATCH] Change bookmark key binding to avoid conflict K is used to scroll up vim-style. --- 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 2521c7a..70134b7 100644 --- a/toot/tui/timeline.py +++ b/toot/tui/timeline.py @@ -158,7 +158,7 @@ class Timeline(urwid.Columns): self.refresh_status_details() return - if key in ("k", "K"): + if key in ("o", "O"): self._emit("bookmark", status) return @@ -329,7 +329,7 @@ class StatusDetails(urwid.Pile): "[B]oost", "[D]elete" if status.is_mine else "", "[F]avourite", - "Boo[k]mark", + "B[o]okmark", "[V]iew", "[T]hread" if not self.in_thread else "", "[L]inks",