From 14286c489cb83504eae978a49c28a1b3d4ac97c0 Mon Sep 17 00:00:00 2001 From: raphaelpra Date: Fri, 13 Sep 2024 18:12:01 +0200 Subject: [PATCH] Add the ability to filter pr by author --- 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..29be5c2 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 = { "assignee", "label", "author", "search", "state", "base", "limit" } elseif target == "run" then tmp_table = { "workflow", "limit" } elseif target == "gist" then