We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4a97b22 commit cf73f19Copy full SHA for cf73f19
lua/github_nvim/pickers/github_repos.lua
@@ -74,11 +74,6 @@ local searcher = function(input, results)
74
return filtered
75
end
76
77
-local finder = finders.new_table({
78
- results = get_github_repos_cached(),
79
- entry_maker = entry_maker1,
80
- searcher = searcher,
81
-})
82
83
local function selection_open_project()
84
actions._close(current_prompt_bufnr, true)
@@ -198,6 +193,11 @@ end
198
193
199
194
function M.pick()
200
195
local conf = require('telescope.config').values
196
+ local finder = finders.new_table({
197
+ results = get_github_repos_cached(),
+ entry_maker = entry_maker1,
+ searcher = searcher,
+ })
201
local my_picker = pickers.new({}, {
202
prompt_title = "Your github repos",
203
finder = finder,
0 commit comments