From 2b20c38ec1edde8e7c87b0a5cafc404026de6dd1 Mon Sep 17 00:00:00 2001 From: dgiacomo Date: Wed, 20 Dec 2023 15:34:44 -0800 Subject: [PATCH] adding author to list of things you can filter on PRs - it's in docs just not in code --- lua/telescope/_extensions/gh_builtin.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/telescope/_extensions/gh_builtin.lua b/lua/telescope/_extensions/gh_builtin.lua index f29fd8d..f5f463e 100644 --- a/lua/telescope/_extensions/gh_builtin.lua +++ b/lua/telescope/_extensions/gh_builtin.lua @@ -21,7 +21,7 @@ local function parse_opts(opts, target) if target == "issue" then tmp_table = { "author", "assignee", "mention", "label", "milestone", "search", "state", "limit" } elseif target == "pr" then - tmp_table = { "assignee", "label", "search", "state", "base", "limit" } + tmp_table = { "author", "assignee", "label", "search", "state", "base", "limit" } elseif target == "run" then tmp_table = { "workflow", "limit" } elseif target == "gist" then