diff options
author | mousebot <mousebot@riseup.net> | 2021-05-11 10:00:08 +0200 |
---|---|---|
committer | mousebot <mousebot@riseup.net> | 2021-05-11 11:00:44 +0200 |
commit | 1ffe400fd4e01400fee143bf9cf6a5c22be17b3f (patch) | |
tree | d51d48bf4496e567e99f91a47a8846adad148a88 /lisp/mastodon.el | |
parent | 4fcdb8c4b919b3a708684d1b373208dc67367664 (diff) |
add basic search functions
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 e338793..512b345 100644 --- a/lisp/mastodon.el +++ b/lisp/mastodon.el @@ -53,6 +53,7 @@ (autoload 'mastodon-toot--toggle-boost "mastodon-toot") (autoload 'mastodon-toot--toggle-favourite "mastodon-toot") (autoload 'mastodon-discover "mastodon-discover") +(autoload 'mastodon-search--search-query "mastodon-search") (defgroup mastodon nil "Interface with Mastodon." @@ -115,6 +116,7 @@ Use. e.g. \"%c\" for your locale's date and time format." (define-key map (kbd "M") #'mastodon-tl--mute-user) (define-key map (kbd "C-S-M") #'mastodon-tl--unmute-user) (define-key map (kbd "C-S-P") #'mastodon-profile--my-profile) + (define-key map (kbd "S") #'mastodon-search--search-query) map) "Keymap for `mastodon-mode'.") |