aboutsummaryrefslogtreecommitdiff
path: root/config.lua
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--config.lua6
1 files changed, 3 insertions, 3 deletions
diff --git a/config.lua b/config.lua
index 67e6f15..793a2dc 100644
--- a/config.lua
+++ b/config.lua
@@ -1,9 +1,9 @@
print('hello starting up...')
--- @type table
-web = web
+local web = web
--- @type table
-uv = uv
+local uv = uv
local function trim(s)
local res, _ = string.gsub(s, "^%s*(.-)%s*$", "%1")
@@ -36,7 +36,7 @@ function Dmenu.select(list, opts, callback)
end
end)
- uv.read_start(stdout, function(_err, data)
+ uv.read_start(stdout, function(_, data)
if data then selection = data end
end)