From e62f578687a8ee81394d00a5775843bb0bd813a0 Mon Sep 17 00:00:00 2001 From: Griffin Smith Date: Tue, 22 Jun 2021 13:30:14 -0400 Subject: fix(gs/emacs): Fix headlines-from-assigned-to-me If org-tracker-headlines-from-search is called non-interactively, it only *returns* the org headlines as a string, rather than inputting them at point. Change-Id: Ia43d516f35a11383b206a57f345a6aeedfe86831 Reviewed-on: https://cl.tvl.fyi/c/depot/+/3230 Reviewed-by: grfn Tested-by: BuildkiteCI --- users/grfn/emacs.d/config.el | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'users/grfn') diff --git a/users/grfn/emacs.d/config.el b/users/grfn/emacs.d/config.el index 5b41c28a0f..16d75ddc70 100644 --- a/users/grfn/emacs.d/config.el +++ b/users/grfn/emacs.d/config.el @@ -241,7 +241,8 @@ (defun org-tracker-headlines-from-assigned-to-me (level) (interactive "*nLevel: ") - (org-tracker-headlines-from-search + (funcall-interactively + #'org-tracker-headlines-from-search level "assignee = currentUser() and statusCategory = 2"))) -- cgit 1.4.1