Change bookmark key binding to avoid conflict

K is used to scroll up vim-style.
This commit is contained in:
Ivan Habunek 2022-12-27 11:46:29 +01:00
parent fed5574939
commit adf3f713a6
No known key found for this signature in database
GPG Key ID: F5F0623FF5EBCB3D
1 changed files with 2 additions and 2 deletions

View File

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