Skip to content

Commit

Permalink
fix: Remove a forgotten dbg!
Browse files Browse the repository at this point in the history
  • Loading branch information
nferhat committed Nov 29, 2024
1 parent 8cb535a commit 5534dff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helix-view/src/editor.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 });
Expand Down

0 comments on commit 5534dff

Please sign in to comment.