-
-
Notifications
You must be signed in to change notification settings - Fork 16
Closed
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed
Description
Is your feature request related to a problem? Please describe.
While searching, it would be visually nice to see the found results being highlighted in the list.
For example:
Describe the solution you'd like
This needs some reading on displaying text docs but I'm thinking we can simply change the colors of Span
s somehow.
Describe alternatives you've considered
None.
Additional context
See https://ratatui.rs/how-to/render/display-text and
Lines 73 to 85 in 32fb9ac
let items = items | |
.into_iter() | |
.filter(|cve| { | |
query.is_empty() | |
|| cve.id.to_lowercase().contains(&query) | |
|| cve | |
.description | |
.clone() | |
.unwrap_or_default() | |
.to_lowercase() | |
.contains(&query) | |
}) | |
.collect(); |
noahgitsham and mertssmnoglu
Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or requestgood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed