From b49175cd34fe4661226394c9d183a95e922b9b32 Mon Sep 17 00:00:00 2001 From: Oleksandr Smirnov Date: Fri, 21 Mar 2025 16:38:07 +0200 Subject: [PATCH] fix(plugin): fix command name for :GoIfErr --- plugin/gopher.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugin/gopher.lua b/plugin/gopher.lua index 208fc7c..2429b25 100644 --- a/plugin/gopher.lua +++ b/plugin/gopher.lua @@ -9,7 +9,7 @@ if c.setup_commands then vim.cmd("tabnew " .. require("gopher._utils.log").get_outfile()) end, { nargs = 0 }) - vim.api.nvim_create_user_command("GoIferr", function() + vim.api.nvim_create_user_command("GoIfErr", function() require("gopher").iferr() end, { nargs = 0 })