mirror of
https://github.com/helix-editor/helix.git
synced 2025-04-05 11:57:43 +03:00
Display error code only if not none
This commit is contained in:
parent
0c104685c0
commit
a43bcc8765
1 changed files with 2 additions and 3 deletions
|
@ -125,6 +125,7 @@ impl ui::menu::Item for PickerDiagnostic {
|
||||||
NumberOrString::Number(n) => n.to_string(),
|
NumberOrString::Number(n) => n.to_string(),
|
||||||
NumberOrString::String(s) => s.to_string(),
|
NumberOrString::String(s) => s.to_string(),
|
||||||
})
|
})
|
||||||
|
.map(|code| format!(" ({})", code))
|
||||||
.unwrap_or_default();
|
.unwrap_or_default();
|
||||||
|
|
||||||
let truncated_path = path::get_truncated_path(self.url.path())
|
let truncated_path = path::get_truncated_path(self.url.path())
|
||||||
|
@ -135,9 +136,7 @@ impl ui::menu::Item for PickerDiagnostic {
|
||||||
Span::raw(truncated_path),
|
Span::raw(truncated_path),
|
||||||
Span::raw(": "),
|
Span::raw(": "),
|
||||||
Span::styled(&self.diag.message, style),
|
Span::styled(&self.diag.message, style),
|
||||||
Span::raw(" ("),
|
Span::styled(code, style),
|
||||||
Span::styled(code, style.add_modifier(Modifier::BOLD)),
|
|
||||||
Span::raw(")"),
|
|
||||||
])
|
])
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue