From 30911a3959c8f173b1a374c64ac6f3cde9b3d672 Mon Sep 17 00:00:00 2001 From: Ari Breitkreuz Date: Tue, 21 Apr 2020 17:47:41 +0200 Subject: [PATCH] Rename v to entry in add_entry loop --- lib/menubar/init.lua | 28 ++++++++++++++-------------- 1 file changed, 14 insertions(+), 14 deletions(-) diff --git a/lib/menubar/init.lua b/lib/menubar/init.lua index 7f350dd9..18382ac4 100644 --- a/lib/menubar/init.lua +++ b/lib/menubar/init.lua @@ -314,34 +314,34 @@ local function menulist_update(scr) end -- Add the applications according to their name and cmdline - local add_entry = function(v) - v.focused = false - if not current_category or v.category == current_category then + local add_entry = function(entry) + entry.focused = false + if not current_category or entry.category == current_category then -- check if the query matches either the name or the commandline -- of some entry - if string.match(v.name, pattern) - or string.match(v.cmdline, pattern) then + if string.match(entry.name, pattern) + or string.match(entry.cmdline, pattern) then - v.weight = 0 - v.prio = PRIO_NONE + entry.weight = 0 + entry.prio = PRIO_NONE -- get use count from count_table if present -- and use it as weight - if string.len(pattern) > 0 and count_table[v.name] ~= nil then - v.weight = tonumber(count_table[v.name]) + if string.len(pattern) > 0 and count_table[entry.name] ~= nil then + entry.weight = tonumber(count_table[entry.name]) end -- check for prefix match - if string.match(v.name, "^" .. pattern) - or string.match(v.cmdline, "^" .. pattern) then + if string.match(entry.name, "^" .. pattern) + or string.match(entry.cmdline, "^" .. pattern) then -- increase default priority - v.prio = PRIO_NONE + 1 + entry.prio = PRIO_NONE + 1 else - v.prio = PRIO_NONE + entry.prio = PRIO_NONE end - table.insert (command_list, v) + table.insert (command_list, entry) end end end