summaryrefslogtreecommitdiff
path: root/src/ide/tooltip.rs
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2022-12-27 16:07:26 +0100
committerLaurenz <laurmaedje@gmail.com>2022-12-27 16:07:26 +0100
commit94b90761ebbdf33686e82feb5a89f98d049c5b65 (patch)
tree19ede419461efc0a9316b4188e092de42ca4be0b /src/ide/tooltip.rs
parentfd3d3b10ceff64386da93d46dc3ac7ffab83b8e1 (diff)
Bugfixes
Diffstat (limited to 'src/ide/tooltip.rs')
-rw-r--r--src/ide/tooltip.rs42
1 files changed, 3 insertions, 39 deletions
diff --git a/src/ide/tooltip.rs b/src/ide/tooltip.rs
index 7f6ca692..62cb11c1 100644
--- a/src/ide/tooltip.rs
+++ b/src/ide/tooltip.rs
@@ -1,8 +1,6 @@
-use std::fmt::Write;
-
use if_chain::if_chain;
-use crate::font::{FontInfo, FontStyle};
+use super::{plain_docs_sentence, summarize_font_family};
use crate::model::{CastInfo, Value};
use crate::syntax::ast::{self, AstNode};
use crate::syntax::{LinkedNode, Source, SyntaxKind};
@@ -28,7 +26,7 @@ fn function_tooltip(world: &dyn World, leaf: &LinkedNode) -> Option<String> {
if let Some(Value::Func(func)) = world.library().scope.get(ident);
if let Some(info) = func.info();
then {
- return Some(info.docs.into());
+ return Some(plain_docs_sentence(&info.docs));
}
}
@@ -65,7 +63,7 @@ fn named_param_tooltip(world: &dyn World, leaf: &LinkedNode) -> Option<String> {
if let SyntaxKind::Ident(ident) = leaf.kind();
if let Some(param) = info.param(ident);
then {
- return Some(param.docs.into());
+ return Some(plain_docs_sentence(param.docs));
}
}
@@ -126,37 +124,3 @@ fn font_family_tooltip(world: &dyn World, leaf: &LinkedNode) -> Option<String> {
None
}
-
-/// Create a short description of a font family.
-pub(super) fn summarize_font_family<'a>(
- variants: impl Iterator<Item = &'a FontInfo>,
-) -> String {
- let mut infos: Vec<_> = variants.collect();
- infos.sort_by_key(|info| info.variant);
-
- let mut has_italic = false;
- let mut min_weight = u16::MAX;
- let mut max_weight = 0;
- for info in &infos {
- let weight = info.variant.weight.to_number();
- has_italic |= info.variant.style == FontStyle::Italic;
- min_weight = min_weight.min(weight);
- max_weight = min_weight.max(weight);
- }
-
- let count = infos.len();
- let s = if count == 1 { "" } else { "s" };
- let mut detail = format!("{count} variant{s}.");
-
- if min_weight == max_weight {
- write!(detail, " Weight {min_weight}.").unwrap();
- } else {
- write!(detail, " Weights {min_weight}–{max_weight}.").unwrap();
- }
-
- if has_italic {
- detail.push_str(" Has italics.");
- }
-
- detail
-}