From 5c3fdb5e8b33cf18e9609a9d5983d0bab4474d28 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A5kon=20Harnes?= Date: Sun, 24 Mar 2024 12:44:22 +0100 Subject: [PATCH] fix: luacheck line too long error --- lua/img-clip/config.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/img-clip/config.lua b/lua/img-clip/config.lua index 2987e05..088a5cb 100644 --- a/lua/img-clip/config.lua +++ b/lua/img-clip/config.lua @@ -11,7 +11,7 @@ local defaults = { default = { dir_path = "assets", -- directory path to save images to, can be relative (cwd or current file) or absolute file_name = "%Y-%m-%d-%H-%M-%S", -- file name format (see lua.org/pil/22.1.html) - process_cmd = "", -- shell command to process the image before saving or embedding as base64 (e.g. "convert -quality 85 - -") + process_cmd = "", -- shell command to process the image before saving or embedding as base64 url_encode_path = false, -- encode spaces and special characters in file path use_absolute_path = false, -- expands dir_path to an absolute path relative_to_current_file = false, -- make dir_path relative to current file rather than the cwd