Cleaned up commnts and added notify events back

This commit is contained in:
Harrison Cramer
2023-04-25 20:41:04 -04:00
parent 1ce0c56121
commit 55d7bf2d21
2 changed files with 10 additions and 10 deletions

View File

@@ -153,17 +153,15 @@ local function darken_metadata(bufnr, regex)
end
local function print_success(_, line)
print(line)
-- if line ~= nil and line ~= "" then
-- notify(line, "info")
-- end
if line ~= nil and line ~= "" then
notify(line, "info")
end
end
local function print_error(_, line)
print(line)
-- if line ~= nil and line ~= "" then
-- notify(line, "error")
-- end
if line ~= nil and line ~= "" then
notify(line, "error")
end
end
local function exit(popup)