diff --git a/crates/editor2/src/editor.rs b/crates/editor2/src/editor.rs index ffdfe3f975b56ca114bfe3911c3dc8f0eacd47ba..4e9a1dee90c624a99f4754f0a685a9b9e42ba9b6 100644 --- a/crates/editor2/src/editor.rs +++ b/crates/editor2/src/editor.rs @@ -1244,7 +1244,13 @@ impl CompletionsMenu { if text.trim().is_empty() { None } else { - Some(h_stack().ml_2().child(Label::new(text.clone()))) + Some( + h_stack().ml_4().child( + Label::new(text.clone()) + .size(LabelSize::Small) + .color(Color::Muted), + ), + ) } } else { None