diff options
| author | TJ DeVries <devries.timothyj@gmail.com> | 2020-09-08 23:29:29 -0400 |
|---|---|---|
| committer | TJ DeVries <devries.timothyj@gmail.com> | 2020-09-08 23:29:29 -0400 |
| commit | b0faec6dd9eeda463905177f5a3adb347c60b833 (patch) | |
| tree | ad59737267b3d1ae8c7fa6e6fe61dfc2835c454c /lua | |
| parent | c70bbf804cd35214ae5a308835f1963644ba03df (diff) | |
temp: limit requests for live grep
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/telescope/builtin.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/telescope/builtin.lua b/lua/telescope/builtin.lua index 513e3e4..9adeba5 100644 --- a/lua/telescope/builtin.lua +++ b/lua/telescope/builtin.lua @@ -70,7 +70,7 @@ builtin.live_grep = function(opts) return flatten { vimgrep_arguments, prompt } end, opts.entry_maker or make_entry.gen_from_vimgrep(opts), - opts.max_results + opts.max_results or 1000 ) pickers.new(opts, { |
