diff --git a/helix-term/src/commands/lsp.rs b/helix-term/src/commands/lsp.rs index 9c55c830c..55c751fc0 100644 --- a/helix-term/src/commands/lsp.rs +++ b/helix-term/src/commands/lsp.rs @@ -252,6 +252,9 @@ fn diag_picker( .into() }, ), + ui::PickerColumn::new("source", |item: &PickerDiagnostic, _| { + item.diag.source.clone().unwrap_or("".to_string()).into() + }), ui::PickerColumn::new("code", |item: &PickerDiagnostic, _| { match item.diag.code.as_ref() { Some(NumberOrString::Number(n)) => n.to_string().into(),