diff options
| author | Simon Hauser <Simon-Hauser@outlook.de> | 2022-03-26 10:25:47 +0100 |
|---|---|---|
| committer | Simon Hauser <Simon-Hauser@outlook.de> | 2022-03-26 10:25:47 +0100 |
| commit | 40c1e88904d8674d597634ec2db90d51b46795ec (patch) | |
| tree | 3d72217cafea1cb85dfeaab804a15787f798bcff /lua/telescope/pickers.lua | |
| parent | 503db70a6a82ff4847593e5830c05082db39faa0 (diff) | |
chore: fix lint errors from latest ci run
Diffstat (limited to 'lua/telescope/pickers.lua')
| -rw-r--r-- | lua/telescope/pickers.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lua/telescope/pickers.lua b/lua/telescope/pickers.lua index a290bb0..5a82e16 100644 --- a/lua/telescope/pickers.lua +++ b/lua/telescope/pickers.lua @@ -461,7 +461,7 @@ function Picker:find() local prompt = self:_get_next_filtered_prompt() -- TODO: Entry manager should have a "bulk" setter. This can prevent a lot of redraws from display - if self.cache_picker == false or not (self.cache_picker.is_cached == true) then + if self.cache_picker == false or self.cache_picker.is_cached ~= true then self.sorter:_start(prompt) self.manager = EntryManager:new(self.max_results, self.entry_adder, self.stats) |
