diff options
author | mousebot <mousebot@riseup.net> | 2021-05-07 12:06:15 +0200 |
---|---|---|
committer | mousebot <mousebot@riseup.net> | 2021-05-07 12:06:15 +0200 |
commit | 2c4f627c2a22b8105cb3f5ffba429549d4f8e6e7 (patch) | |
tree | 3e50e25e149c287b62f0d15eadf8649b6c6fd885 | |
parent | e5cb126df37ccd8031692e6900c8fad1c34f793e (diff) |
move profile mode map bindings to free up 'f'/'F'
- this way you can favorite posts when viewing a profile
-rw-r--r-- | lisp/mastodon-profile.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el index 16fb1a9..bf6007f 100644 --- a/lisp/mastodon-profile.el +++ b/lisp/mastodon-profile.el @@ -64,8 +64,8 @@ extra keybindings." ;; The mode line indicator. :lighter " Profile" ;; The key bindings - :keymap '(((kbd "F") . mastodon-profile--open-followers) - ((kbd "f") . mastodon-profile--open-following)) + :keymap '(((kbd "O") . mastodon-profile--open-followers) + ((kbd "o") . mastodon-profile--open-following)) :group 'mastodon) (defun mastodon-profile--toot-json () |