Skip to content

Commit cf73f19

Browse files
author
zhangfuwen
committed
fix: stuck on bootupOC
1 parent 4a97b22 commit cf73f19

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lua/github_nvim/pickers/github_repos.lua

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,6 @@ local searcher = function(input, results)
7474
return filtered
7575
end
7676

77-
local finder = finders.new_table({
78-
results = get_github_repos_cached(),
79-
entry_maker = entry_maker1,
80-
searcher = searcher,
81-
})
8277

8378
local function selection_open_project()
8479
actions._close(current_prompt_bufnr, true)
@@ -198,6 +193,11 @@ end
198193

199194
function M.pick()
200195
local conf = require('telescope.config').values
196+
local finder = finders.new_table({
197+
results = get_github_repos_cached(),
198+
entry_maker = entry_maker1,
199+
searcher = searcher,
200+
})
201201
local my_picker = pickers.new({}, {
202202
prompt_title = "Your github repos",
203203
finder = finder,

0 commit comments

Comments
 (0)