diff options
author | martianh <martianh@noreply.codeberg.org> | 2024-01-26 15:40:58 +0000 |
---|---|---|
committer | martianh <martianh@noreply.codeberg.org> | 2024-01-26 15:40:58 +0000 |
commit | fda3e5963d803754fc2e4d0bdbc005ab5e47a93d (patch) | |
tree | bc1634665af09e819fbf5a10f749eb345227b9b2 /lisp/mastodon.el | |
parent | 07b90525015b86920011585599a9810b47b48f4e (diff) | |
parent | b8dd95b4c948a7510f26f0c98747b4187da28048 (diff) |
Merge pull request 'Add a couple of key bindings that I have found useful' (#525) from dme/mastodon.el:devel/suspend into develop
Reviewed-on: https://codeberg.org/martianh/mastodon.el/pulls/525
Diffstat (limited to 'lisp/mastodon.el')
-rw-r--r-- | lisp/mastodon.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/mastodon.el b/lisp/mastodon.el index bac4d67..9dac1d1 100644 --- a/lisp/mastodon.el +++ b/lisp/mastodon.el @@ -184,6 +184,7 @@ Use. e.g. \"%c\" for your locale's date and time format." (define-key map (kbd "k") #'mastodon-toot--toggle-bookmark) (define-key map (kbd "r") #'mastodon-toot--reply) (define-key map (kbd "C") #'mastodon-toot--copy-toot-url) + (define-key map (kbd "o") #'mastodon-toot--open-toot-url) (define-key map (kbd "v") #'mastodon-tl--poll-vote) (define-key map (kbd "E") #'mastodon-toot--view-toot-edits) (define-key map (kbd "T") #'mastodon-tl--thread) @@ -225,6 +226,7 @@ Use. e.g. \"%c\" for your locale's date and time format." (define-key map (kbd "G") #'mastodon-views--view-follow-suggestions) (define-key map (kbd "X") #'mastodon-views--view-lists) (define-key map (kbd "SPC") #'mastodon-tl--scroll-up-command) + (define-key map (kbd "z") #'bury-buffer) map) "Keymap for `mastodon-mode'.") |