Skip to content

Commit f691a4a

Browse files
committed
feat(pickers): increase default scrolling limit to 500
Related-to: #2779
1 parent a559019 commit f691a4a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lua/telescope/pickers.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -324,7 +324,7 @@ function Picker:new(opts)
324324

325325
cache_picker = config.resolve_table_opts(opts.cache_picker, vim.deepcopy(config.values.cache_picker)),
326326

327-
scrolling_limit = tonumber(vim.F.if_nil(opts.scrolling_limit, 250)),
327+
scrolling_limit = tonumber(vim.F.if_nil(opts.scrolling_limit, 500)),
328328

329329
__locations_input = vim.F.if_nil(opts.__locations_input, false),
330330
}, self)

0 commit comments

Comments
 (0)