Skip to content

Commit 3070828

Browse files
committed
chore: fix style errors
1 parent 398b4cc commit 3070828

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

lua/img-clip/clipboard.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ M.content_is_image = function()
4848
local output = util.execute("wl-paste --list-types")
4949
return output ~= nil and output:find("image/png") ~= nil
5050

51-
-- MacOS (pngpaste)
51+
-- MacOS (pngpaste)
5252
elseif cmd == "pngpaste" then
5353
local _, exit_code = util.execute("pngpaste -")
5454
return exit_code == 0
@@ -83,7 +83,7 @@ M.save_image = function(file_path)
8383
local _, exit_code = util.execute(command)
8484
return exit_code == 0
8585

86-
-- MacOS (pngpaste)
86+
-- MacOS (pngpaste)
8787
elseif cmd == "pngpaste" then
8888
local command = string.format('pngpaste - %s> "%s"', process_cmd:gsub("%%", "%%%%"), file_path)
8989
local _, exit_code = util.execute(command)

lua/img-clip/health.lua

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@ local M = {}
44

55
local ok = vim.health.ok or vim.health.report_ok
66
local start = vim.health.start or vim.health.report_start
7-
local warn = vim.health.warn or vim.health.report_warn
87
local error = vim.health.error or vim.health.report_error
98

109
M.check = function()

0 commit comments

Comments
 (0)