From 5534dff34480a134fe1d825803bdd14d2b4bf7be Mon Sep 17 00:00:00 2001 From: nferhat Date: Fri, 29 Nov 2024 16:04:27 +0100 Subject: [PATCH] fix: Remove a forgotten `dbg!` --- helix-view/src/editor.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/helix-view/src/editor.rs b/helix-view/src/editor.rs index b300ad2de6d06..7533afbe40897 100644 --- a/helix-view/src/editor.rs +++ b/helix-view/src/editor.rs @@ -2275,7 +2275,7 @@ fn compute_completion_item_kind_styles( "file", "folder", ] { - let style = theme.try_get(&dbg!(format!("ui.completion.kind.{name}"))); + let style = theme.try_get(&(format!("ui.completion.kind.{name}")); let text = config.completion_item_kinds.get(name).cloned(); if style.is_some() || text.is_some() { ret.insert(name, CompletionItemKindStyle { text, style });