From c81ec8776f4fea6289af619dabbbdda9c7e488ec Mon Sep 17 00:00:00 2001 From: jordanyono Date: Wed, 8 Oct 2025 11:11:29 -0400 Subject: [PATCH] trhing --- init.lua | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/init.lua b/init.lua index 981b3aca..56bb89b5 100644 --- a/init.lua +++ b/init.lua @@ -790,11 +790,9 @@ require('lazy').setup({ -- Hover and signature help hoverKind = 'FullDocumentation', -- Show full documentation in hover - usePlaceholders = true, -- Insert placeholders for function arguments -- Import management gofumpt = true, -- Use `gofumpt` formatting style - completeUnimported = true, -- Suggest symbols from unimported packages directoryFilters = { '-vendor' }, -- Exclude vendor directories from analysis }, }, @@ -806,7 +804,7 @@ require('lazy').setup({ buffer = bufnr, callback = function() vim.lsp.buf.code_action { - context = { only = { 'source.organizeImports' } }, + context = { diagnostics = {}, only = { 'source.organizeImports' } }, apply = true, } end,