Skip to content

Commit 0548d8f

Browse files
committed
fix: Remove a forgotten dbg!
1 parent 8cb535a commit 0548d8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

helix-view/src/editor.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2275,7 +2275,7 @@ fn compute_completion_item_kind_styles(
22752275
"file",
22762276
"folder",
22772277
] {
2278-
let style = theme.try_get(&dbg!(format!("ui.completion.kind.{name}")));
2278+
let style = theme.try_get(&format!("ui.completion.kind.{name}"));
22792279
let text = config.completion_item_kinds.get(name).cloned();
22802280
if style.is_some() || text.is_some() {
22812281
ret.insert(name, CompletionItemKindStyle { text, style });

0 commit comments

Comments
 (0)