diff options
| author | Anton <14187674+antosha417@users.noreply.github.com> | 2022-06-02 17:02:19 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-06-02 16:02:19 +0200 |
| commit | 28bb75fd91686ff5ec3370ad1c2f708835392f45 (patch) | |
| tree | 7a7d1bb15e9ac9126b16b826f031a8d937e82bca /lua | |
| parent | 3eb90430b61b78b707e8ffe0cfe49138daaddbcc (diff) | |
fix: pass user opts to planets picker (#1983)
Diffstat (limited to 'lua')
| -rw-r--r-- | lua/telescope/builtin/internal.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/telescope/builtin/internal.lua b/lua/telescope/builtin/internal.lua index 0ee7e79..1f6612a 100644 --- a/lua/telescope/builtin/internal.lua +++ b/lua/telescope/builtin/internal.lua @@ -205,7 +205,7 @@ internal.planets = function(opts) end end - pickers.new({ + pickers.new(opts, { prompt_title = "Planets", finder = finders.new_table { results = acceptable_files, |
