From 180191b3393e1924808215fdeae544c44bef881a Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Thu, 2 Oct 2025 06:01:22 +0200 Subject: [PATCH] fix(lsp): make float diagnostics focusable --- lua/ow/lsp.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lua/ow/lsp.lua b/lua/ow/lsp.lua index c57b255..65330b8 100644 --- a/lua/ow/lsp.lua +++ b/lua/ow/lsp.lua @@ -79,7 +79,7 @@ function M.setup() show_header = false, source = true, border = "rounded", - focusable = false, + focusable = true, format = function(diagnostic) return string.format("%s", diagnostic.message) end,