diff options
author | David Edmondson <dme@dme.org> | 2024-01-16 14:00:34 +0000 |
---|---|---|
committer | martianh <martianh@noreply.codeberg.org> | 2024-01-26 15:40:58 +0000 |
commit | f0137a0ad60df4ac8b78020f155e33f733493027 (patch) | |
tree | 71bd5676c5d69118aebd18c128b335863da626a4 /lisp/mastodon.el | |
parent | fa73817c225783f09e59f71d8724c62352c36776 (diff) |
Add 'o' binding to open the current toot in a browser
Diffstat (limited to 'lisp/mastodon.el')
-rw-r--r-- | lisp/mastodon.el | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lisp/mastodon.el b/lisp/mastodon.el index 51fe6a5..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) |