From 79644ab67731c7ba956c354bf0545282f34e10cc Mon Sep 17 00:00:00 2001 From: Simon Hauser Date: Fri, 23 Jul 2021 17:42:37 +0200 Subject: chore: use stylua for formatting (#1040) * chore: stylua job and config * reformat with stylua --- lua/telescope/entry_manager.lua | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'lua/telescope/entry_manager.lua') diff --git a/lua/telescope/entry_manager.lua b/lua/telescope/entry_manager.lua index f32d29f..ff8b9ba 100644 --- a/lua/telescope/entry_manager.lua +++ b/lua/telescope/entry_manager.lua @@ -1,6 +1,6 @@ -local log = require("telescope.log") +local log = require "telescope.log" -local LinkedList = require('telescope.algos.linked_list') +local LinkedList = require "telescope.algos.linked_list" --[[ @@ -27,7 +27,7 @@ local EntryManager = {} EntryManager.__index = EntryManager function EntryManager:new(max_results, set_entry, info) - log.trace("Creating entry_manager...") + log.trace "Creating entry_manager..." info = info or {} info.looped = 0 @@ -136,7 +136,7 @@ function EntryManager:add_entry(picker, score, entry) local info = self.info info.maxed = info.maxed or 0 - local new_container = { entry, score, } + local new_container = { entry, score } -- Short circuit for bad scores -- they never need to be displayed. -- Just save them and we'll deal with them later. -- cgit v1.2.3