From 1b43fa6a1c11e2a53e50d80549b63c4f93031868 Mon Sep 17 00:00:00 2001 From: Oscar Wallberg Date: Mon, 4 May 2026 16:04:13 +0200 Subject: [PATCH] fix(keymap): remove diagnostic show float in favor of builtin d --- lua/core/keymap.lua | 1 - 1 file changed, 1 deletion(-) diff --git a/lua/core/keymap.lua b/lua/core/keymap.lua index 00e1492..eb3df1e 100644 --- a/lua/core/keymap.lua +++ b/lua/core/keymap.lua @@ -145,7 +145,6 @@ vim.keymap.set("n", "r", function() end end) -vim.keymap.set("n", "", vim.diagnostic.open_float) vim.keymap.set("n", "[d", function() vim.diagnostic.jump({ count = -1, float = true }) end)