From 869917a0e770449040a6fbc15a80365fe6c86bdf Mon Sep 17 00:00:00 2001 From: marty hiatt Date: Thu, 12 Oct 2023 18:06:26 +0200 Subject: rough account statuses search --- lisp/mastodon-profile.el | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'lisp/mastodon-profile.el') diff --git a/lisp/mastodon-profile.el b/lisp/mastodon-profile.el index a05087f..bee1b26 100644 --- a/lisp/mastodon-profile.el +++ b/lisp/mastodon-profile.el @@ -93,6 +93,7 @@ (defvar mastodon-profile-mode-map (let ((map (make-sparse-keymap))) (define-key map (kbd "C-c C-c") #'mastodon-profile--account-view-cycle) + (define-key map (kbd "C-c C-s") #'mastodon-profile--account-search) map) "Keymap for `mastodon-profile-mode'.") @@ -215,6 +216,13 @@ NO-REBLOGS means do not display boosts in statuses." (handle (alist-get 'acct profile))) (mastodon-views--add-account-to-list nil id handle)))) +(defun mastodon-profile--account-search (query) + "Search currently viewed account for QUERY." + (interactive "sSearch account for: ") + (let* ((ep (mastodon-tl--buffer-property 'endpoint)) + (id (nth 1 (split-string ep "/")))) + (mastodon-search--search-query query "statuses" nil id))) + ;;; ACCOUNT PREFERENCES -- cgit v1.2.3