From 46b5be64aa9e7b1cf7d9c29a0e80f7f9a2250007 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maria=20Jos=C3=A9=20Solano?= Date: Sun, 10 Dec 2023 11:13:09 -0800 Subject: [PATCH] fix(lsp_code_actions): typo in preview message --- lua/fzf-lua/previewer/codeaction.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/fzf-lua/previewer/codeaction.lua b/lua/fzf-lua/previewer/codeaction.lua index 0169ce7d..09800782 100644 --- a/lua/fzf-lua/previewer/codeaction.lua +++ b/lua/fzf-lua/previewer/codeaction.lua @@ -125,7 +125,7 @@ local function diff_tuple(tuple, diff_opts) local command = type(action.command) == "table" and action.command or action return { string.format( - "Code action preview is only available for document/worksapce edits (%s).", + "Code action preview is only available for document/workspace edits (%s).", command and type(command.command) == "string" and string.format("command:%s", command.command) or string.format("kind:%s", action.kind))