diff options
author | mousebot <mousebot@riseup.net> | 2021-10-22 12:59:43 +0200 |
---|---|---|
committer | mousebot <mousebot@riseup.net> | 2021-10-22 12:59:43 +0200 |
commit | 9dbf6e52c5c9f53a5adcf54bf3f9bcdc51c1332c (patch) | |
tree | 5531ac3701267ba71166b1f3bb8b4a080ce8ed2c /lisp | |
parent | 545ef7d498f236974c6fe2ae767d645436694a45 (diff) |
bookmarks keybinding
Diffstat (limited to 'lisp')
-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 e6a01f8..e1bd2be 100644 --- a/lisp/mastodon.el +++ b/lisp/mastodon.el @@ -81,6 +81,7 @@ (autoload 'mastodon-auth--user-acct "mastodon-auth") (autoload 'mastodon-tl--poll-vote "mastodon-http") (autoload 'mastodon-toot--delete-and-redraft-toot "mastodon-toot") +(autoload 'mastodon-profile--view-bookmarks "mastodon-profile") (defgroup mastodon nil "Interface with Mastodon." @@ -157,6 +158,7 @@ Use. e.g. \"%c\" for your locale's date and time format." (define-key map (kbd "a") #'mastodon-notifications--follow-request-accept-notifs) (define-key map (kbd "j") #'mastodon-notifications--follow-request-reject-notifs) (define-key map (kbd "v") #'mastodon-tl--poll-vote) + (define-key map (kbd "K") #'mastodon-profile--view-bookmarks) map) "Keymap for `mastodon-mode'.") |