Accept 'IntoIterator<Item = Column<T, D>>' for picker columns

This allows us to replace any `vec![..]`s of columns where all columns
are static with static slices `[..]`.
This commit is contained in:
Michael Davis 2024-04-24 09:22:22 -04:00
parent 009bbdaf8d
commit a7777b3c11
No known key found for this signature in database
6 changed files with 31 additions and 21 deletions

View file

@ -371,7 +371,7 @@ pub fn symbol_picker(cx: &mut Context) {
symbols.append(&mut lsp_items);
}
let call = move |_editor: &mut Editor, compositor: &mut Compositor| {
let columns = vec![
let columns = [
ui::PickerColumn::new("kind", |item: &SymbolInformationItem, _| {
display_symbol_kind(item.symbol.kind).into()
}),
@ -478,7 +478,7 @@ pub fn workspace_symbol_picker(cx: &mut Context) {
}
.boxed()
};
let columns = vec![
let columns = [
ui::PickerColumn::new("kind", |item: &SymbolInformationItem, _| {
display_symbol_kind(item.symbol.kind).into()
}),
@ -855,7 +855,7 @@ fn goto_impl(
}
[] => unreachable!("`locations` should be non-empty for `goto_impl`"),
_locations => {
let columns = vec![ui::PickerColumn::new(
let columns = [ui::PickerColumn::new(
"location",
|item: &lsp::Location, cwdir: &std::path::PathBuf| {
// The preallocation here will overallocate a few characters since it will account for the