From 587d2c25c436fe41d31c4891edce35fa3e818c0a Mon Sep 17 00:00:00 2001 From: Yasien Mac Mini Date: Tue, 12 May 2026 13:04:39 +0200 Subject: [PATCH] remove lsp progress popups when editing code --- lua/plugins/cmd_popup.lua | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/lua/plugins/cmd_popup.lua b/lua/plugins/cmd_popup.lua index c7cab48..1c813ee 100644 --- a/lua/plugins/cmd_popup.lua +++ b/lua/plugins/cmd_popup.lua @@ -5,6 +5,15 @@ return { cmdline = { view = "cmdline_popup", -- This ensures it's a popup and not at the bottom }, + routes = { + { + filter = { + event = "lsp", + kind = "progress", + }, + opts = { skip = true }, + }, + }, presets = { bottom_search = false, -- use a classic bottom cmdline for search command_palette = true, -- position the cmdline and popupmenu together -- 2.49.1