Use Picker in ProjectSymbolsView
This commit is contained in:
parent
7b16860806
commit
c75ffc583c
4 changed files with 155 additions and 244 deletions
1
Cargo.lock
generated
1
Cargo.lock
generated
|
@ -3794,6 +3794,7 @@ dependencies = [
|
||||||
"fuzzy",
|
"fuzzy",
|
||||||
"gpui",
|
"gpui",
|
||||||
"ordered-float",
|
"ordered-float",
|
||||||
|
"picker",
|
||||||
"postage",
|
"postage",
|
||||||
"project",
|
"project",
|
||||||
"settings",
|
"settings",
|
||||||
|
|
|
@ -15,6 +15,7 @@ pub struct Picker<D: PickerDelegate> {
|
||||||
delegate: WeakViewHandle<D>,
|
delegate: WeakViewHandle<D>,
|
||||||
query_editor: ViewHandle<Editor>,
|
query_editor: ViewHandle<Editor>,
|
||||||
list_state: UniformListState,
|
list_state: UniformListState,
|
||||||
|
update_task: Option<Task<()>>,
|
||||||
}
|
}
|
||||||
|
|
||||||
pub trait PickerDelegate: View {
|
pub trait PickerDelegate: View {
|
||||||
|
@ -87,12 +88,14 @@ impl<D: PickerDelegate> Picker<D> {
|
||||||
});
|
});
|
||||||
cx.subscribe(&query_editor, Self::on_query_editor_event)
|
cx.subscribe(&query_editor, Self::on_query_editor_event)
|
||||||
.detach();
|
.detach();
|
||||||
|
let mut this = Self {
|
||||||
Self {
|
|
||||||
delegate,
|
|
||||||
query_editor,
|
query_editor,
|
||||||
list_state: Default::default(),
|
list_state: Default::default(),
|
||||||
}
|
update_task: None,
|
||||||
|
delegate,
|
||||||
|
};
|
||||||
|
this.update_matches(cx);
|
||||||
|
this
|
||||||
}
|
}
|
||||||
|
|
||||||
fn render_matches(&self, cx: &AppContext) -> ElementBox {
|
fn render_matches(&self, cx: &AppContext) -> ElementBox {
|
||||||
|
@ -137,22 +140,31 @@ impl<D: PickerDelegate> Picker<D> {
|
||||||
event: &editor::Event,
|
event: &editor::Event,
|
||||||
cx: &mut ViewContext<Self>,
|
cx: &mut ViewContext<Self>,
|
||||||
) {
|
) {
|
||||||
if let Some(delegate) = self.delegate.upgrade(cx) {
|
match event {
|
||||||
match event {
|
editor::Event::BufferEdited { .. } => self.update_matches(cx),
|
||||||
editor::Event::BufferEdited { .. } => {
|
editor::Event::Blurred => {
|
||||||
let query = self.query_editor.read(cx).text(cx);
|
if let Some(delegate) = self.delegate.upgrade(cx) {
|
||||||
let update = delegate.update(cx, |d, cx| d.update_matches(query, cx));
|
delegate.update(cx, |delegate, cx| {
|
||||||
cx.spawn(|this, mut cx| async move {
|
delegate.dismiss(cx);
|
||||||
update.await;
|
|
||||||
this.update(&mut cx, |_, cx| cx.notify());
|
|
||||||
})
|
})
|
||||||
.detach();
|
|
||||||
}
|
}
|
||||||
editor::Event::Blurred => delegate.update(cx, |delegate, cx| {
|
|
||||||
delegate.dismiss(cx);
|
|
||||||
}),
|
|
||||||
_ => {}
|
|
||||||
}
|
}
|
||||||
|
_ => {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn update_matches(&mut self, cx: &mut ViewContext<Self>) {
|
||||||
|
if let Some(delegate) = self.delegate.upgrade(cx) {
|
||||||
|
let query = self.query_editor.read(cx).text(cx);
|
||||||
|
let update = delegate.update(cx, |d, cx| d.update_matches(query, cx));
|
||||||
|
cx.notify();
|
||||||
|
self.update_task = Some(cx.spawn(|this, mut cx| async move {
|
||||||
|
update.await;
|
||||||
|
this.update(&mut cx, |this, cx| {
|
||||||
|
cx.notify();
|
||||||
|
this.update_task.take();
|
||||||
|
});
|
||||||
|
}));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -11,6 +11,7 @@ doctest = false
|
||||||
editor = { path = "../editor" }
|
editor = { path = "../editor" }
|
||||||
fuzzy = { path = "../fuzzy" }
|
fuzzy = { path = "../fuzzy" }
|
||||||
gpui = { path = "../gpui" }
|
gpui = { path = "../gpui" }
|
||||||
|
picker = { path = "../picker" }
|
||||||
project = { path = "../project" }
|
project = { path = "../project" }
|
||||||
text = { path = "../text" }
|
text = { path = "../text" }
|
||||||
settings = { path = "../settings" }
|
settings = { path = "../settings" }
|
||||||
|
|
|
@ -3,43 +3,32 @@ use editor::{
|
||||||
};
|
};
|
||||||
use fuzzy::{StringMatch, StringMatchCandidate};
|
use fuzzy::{StringMatch, StringMatchCandidate};
|
||||||
use gpui::{
|
use gpui::{
|
||||||
actions, elements::*, keymap, AppContext, Axis, Entity, ModelHandle, MutableAppContext,
|
actions, elements::*, AppContext, Entity, ModelHandle, MutableAppContext, RenderContext, Task,
|
||||||
RenderContext, Task, View, ViewContext, ViewHandle, WeakViewHandle,
|
View, ViewContext, ViewHandle,
|
||||||
};
|
};
|
||||||
use ordered_float::OrderedFloat;
|
use ordered_float::OrderedFloat;
|
||||||
|
use picker::{Picker, PickerDelegate};
|
||||||
use project::{Project, Symbol};
|
use project::{Project, Symbol};
|
||||||
use settings::Settings;
|
use settings::Settings;
|
||||||
use std::{
|
use std::{borrow::Cow, cmp::Reverse};
|
||||||
borrow::Cow,
|
|
||||||
cmp::{self, Reverse},
|
|
||||||
};
|
|
||||||
use util::ResultExt;
|
use util::ResultExt;
|
||||||
use workspace::{
|
use workspace::Workspace;
|
||||||
menu::{Confirm, SelectFirst, SelectLast, SelectNext, SelectPrev},
|
|
||||||
Workspace,
|
|
||||||
};
|
|
||||||
|
|
||||||
actions!(project_symbols, [Toggle]);
|
actions!(project_symbols, [Toggle]);
|
||||||
|
|
||||||
pub fn init(cx: &mut MutableAppContext) {
|
pub fn init(cx: &mut MutableAppContext) {
|
||||||
cx.add_action(ProjectSymbolsView::toggle);
|
cx.add_action(ProjectSymbolsView::toggle);
|
||||||
cx.add_action(ProjectSymbolsView::confirm);
|
Picker::<ProjectSymbolsView>::init(cx);
|
||||||
cx.add_action(ProjectSymbolsView::select_prev);
|
|
||||||
cx.add_action(ProjectSymbolsView::select_next);
|
|
||||||
cx.add_action(ProjectSymbolsView::select_first);
|
|
||||||
cx.add_action(ProjectSymbolsView::select_last);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub struct ProjectSymbolsView {
|
pub struct ProjectSymbolsView {
|
||||||
handle: WeakViewHandle<Self>,
|
picker: ViewHandle<Picker<Self>>,
|
||||||
project: ModelHandle<Project>,
|
project: ModelHandle<Project>,
|
||||||
selected_match_index: usize,
|
selected_match_index: usize,
|
||||||
list_state: UniformListState,
|
|
||||||
symbols: Vec<Symbol>,
|
symbols: Vec<Symbol>,
|
||||||
match_candidates: Vec<StringMatchCandidate>,
|
match_candidates: Vec<StringMatchCandidate>,
|
||||||
|
show_worktree_root_name: bool,
|
||||||
matches: Vec<StringMatch>,
|
matches: Vec<StringMatch>,
|
||||||
pending_symbols_task: Task<Option<()>>,
|
|
||||||
query_editor: ViewHandle<Editor>,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
pub enum Event {
|
pub enum Event {
|
||||||
|
@ -56,59 +45,29 @@ impl View for ProjectSymbolsView {
|
||||||
"ProjectSymbolsView"
|
"ProjectSymbolsView"
|
||||||
}
|
}
|
||||||
|
|
||||||
fn keymap_context(&self, _: &AppContext) -> keymap::Context {
|
fn render(&mut self, _: &mut RenderContext<Self>) -> ElementBox {
|
||||||
let mut cx = Self::default_keymap_context();
|
ChildView::new(self.picker.clone()).boxed()
|
||||||
cx.set.insert("menu".into());
|
|
||||||
cx
|
|
||||||
}
|
|
||||||
|
|
||||||
fn render(&mut self, cx: &mut RenderContext<Self>) -> ElementBox {
|
|
||||||
let settings = cx.global::<Settings>();
|
|
||||||
Flex::new(Axis::Vertical)
|
|
||||||
.with_child(
|
|
||||||
Container::new(ChildView::new(&self.query_editor).boxed())
|
|
||||||
.with_style(settings.theme.selector.input_editor.container)
|
|
||||||
.boxed(),
|
|
||||||
)
|
|
||||||
.with_child(
|
|
||||||
FlexItem::new(self.render_matches(cx))
|
|
||||||
.flex(1., false)
|
|
||||||
.boxed(),
|
|
||||||
)
|
|
||||||
.contained()
|
|
||||||
.with_style(settings.theme.selector.container)
|
|
||||||
.constrained()
|
|
||||||
.with_max_width(500.0)
|
|
||||||
.with_max_height(420.0)
|
|
||||||
.aligned()
|
|
||||||
.top()
|
|
||||||
.named("project symbols view")
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn on_focus(&mut self, cx: &mut ViewContext<Self>) {
|
fn on_focus(&mut self, cx: &mut ViewContext<Self>) {
|
||||||
cx.focus(&self.query_editor);
|
cx.focus(&self.picker);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
impl ProjectSymbolsView {
|
impl ProjectSymbolsView {
|
||||||
fn new(project: ModelHandle<Project>, cx: &mut ViewContext<Self>) -> Self {
|
fn new(project: ModelHandle<Project>, cx: &mut ViewContext<Self>) -> Self {
|
||||||
let query_editor = cx.add_view(|cx| {
|
let handle = cx.weak_handle();
|
||||||
Editor::single_line(Some(|theme| theme.selector.input_editor.clone()), cx)
|
let picker = cx.add_view(|cx| Picker::new(handle, cx));
|
||||||
});
|
|
||||||
cx.subscribe(&query_editor, Self::on_query_editor_event)
|
|
||||||
.detach();
|
|
||||||
let mut this = Self {
|
let mut this = Self {
|
||||||
handle: cx.weak_handle(),
|
picker,
|
||||||
project,
|
project,
|
||||||
selected_match_index: 0,
|
selected_match_index: 0,
|
||||||
list_state: Default::default(),
|
|
||||||
symbols: Default::default(),
|
symbols: Default::default(),
|
||||||
match_candidates: Default::default(),
|
match_candidates: Default::default(),
|
||||||
matches: Default::default(),
|
matches: Default::default(),
|
||||||
pending_symbols_task: Task::ready(None),
|
show_worktree_root_name: false,
|
||||||
query_editor,
|
|
||||||
};
|
};
|
||||||
this.update_matches(cx);
|
this.update_matches(String::new(), cx).detach();
|
||||||
this
|
this
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -121,72 +80,7 @@ impl ProjectSymbolsView {
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
fn select_prev(&mut self, _: &SelectPrev, cx: &mut ViewContext<Self>) {
|
fn filter(&mut self, query: &str, cx: &mut ViewContext<Self>) {
|
||||||
if self.selected_match_index > 0 {
|
|
||||||
self.select(self.selected_match_index - 1, cx);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn select_next(&mut self, _: &SelectNext, cx: &mut ViewContext<Self>) {
|
|
||||||
if self.selected_match_index + 1 < self.matches.len() {
|
|
||||||
self.select(self.selected_match_index + 1, cx);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn select_first(&mut self, _: &SelectFirst, cx: &mut ViewContext<Self>) {
|
|
||||||
self.select(0, cx);
|
|
||||||
}
|
|
||||||
|
|
||||||
fn select_last(&mut self, _: &SelectLast, cx: &mut ViewContext<Self>) {
|
|
||||||
self.select(self.matches.len().saturating_sub(1), cx);
|
|
||||||
}
|
|
||||||
|
|
||||||
fn select(&mut self, index: usize, cx: &mut ViewContext<Self>) {
|
|
||||||
self.selected_match_index = index;
|
|
||||||
self.list_state.scroll_to(ScrollTarget::Show(index));
|
|
||||||
cx.notify();
|
|
||||||
}
|
|
||||||
|
|
||||||
fn confirm(&mut self, _: &Confirm, cx: &mut ViewContext<Self>) {
|
|
||||||
if let Some(symbol) = self
|
|
||||||
.matches
|
|
||||||
.get(self.selected_match_index)
|
|
||||||
.map(|mat| self.symbols[mat.candidate_id].clone())
|
|
||||||
{
|
|
||||||
cx.emit(Event::Selected(symbol));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn update_matches(&mut self, cx: &mut ViewContext<Self>) {
|
|
||||||
self.filter(cx);
|
|
||||||
let query = self.query_editor.read(cx).text(cx);
|
|
||||||
let symbols = self
|
|
||||||
.project
|
|
||||||
.update(cx, |project, cx| project.symbols(&query, cx));
|
|
||||||
self.pending_symbols_task = cx.spawn_weak(|this, mut cx| async move {
|
|
||||||
let symbols = symbols.await.log_err()?;
|
|
||||||
if let Some(this) = this.upgrade(&cx) {
|
|
||||||
this.update(&mut cx, |this, cx| {
|
|
||||||
this.match_candidates = symbols
|
|
||||||
.iter()
|
|
||||||
.enumerate()
|
|
||||||
.map(|(id, symbol)| {
|
|
||||||
StringMatchCandidate::new(
|
|
||||||
id,
|
|
||||||
symbol.label.text[symbol.label.filter_range.clone()].to_string(),
|
|
||||||
)
|
|
||||||
})
|
|
||||||
.collect();
|
|
||||||
this.symbols = symbols;
|
|
||||||
this.filter(cx);
|
|
||||||
});
|
|
||||||
}
|
|
||||||
None
|
|
||||||
});
|
|
||||||
}
|
|
||||||
|
|
||||||
fn filter(&mut self, cx: &mut ViewContext<Self>) {
|
|
||||||
let query = self.query_editor.read(cx).text(cx);
|
|
||||||
let mut matches = if query.is_empty() {
|
let mut matches = if query.is_empty() {
|
||||||
self.match_candidates
|
self.match_candidates
|
||||||
.iter()
|
.iter()
|
||||||
|
@ -201,7 +95,7 @@ impl ProjectSymbolsView {
|
||||||
} else {
|
} else {
|
||||||
smol::block_on(fuzzy::match_strings(
|
smol::block_on(fuzzy::match_strings(
|
||||||
&self.match_candidates,
|
&self.match_candidates,
|
||||||
&query,
|
query,
|
||||||
false,
|
false,
|
||||||
100,
|
100,
|
||||||
&Default::default(),
|
&Default::default(),
|
||||||
|
@ -225,112 +119,10 @@ impl ProjectSymbolsView {
|
||||||
}
|
}
|
||||||
|
|
||||||
self.matches = matches;
|
self.matches = matches;
|
||||||
self.select_first(&SelectFirst, cx);
|
self.set_selected_index(0, cx);
|
||||||
cx.notify();
|
cx.notify();
|
||||||
}
|
}
|
||||||
|
|
||||||
fn render_matches(&self, cx: &AppContext) -> ElementBox {
|
|
||||||
if self.matches.is_empty() {
|
|
||||||
let settings = cx.global::<Settings>();
|
|
||||||
return Container::new(
|
|
||||||
Label::new(
|
|
||||||
"No matches".into(),
|
|
||||||
settings.theme.selector.empty.label.clone(),
|
|
||||||
)
|
|
||||||
.boxed(),
|
|
||||||
)
|
|
||||||
.with_style(settings.theme.selector.empty.container)
|
|
||||||
.named("empty matches");
|
|
||||||
}
|
|
||||||
|
|
||||||
let handle = self.handle.clone();
|
|
||||||
let list = UniformList::new(
|
|
||||||
self.list_state.clone(),
|
|
||||||
self.matches.len(),
|
|
||||||
move |mut range, items, cx| {
|
|
||||||
let cx = cx.as_ref();
|
|
||||||
let view = handle.upgrade(cx).unwrap();
|
|
||||||
let view = view.read(cx);
|
|
||||||
let start = range.start;
|
|
||||||
range.end = cmp::min(range.end, view.matches.len());
|
|
||||||
|
|
||||||
let show_worktree_root_name =
|
|
||||||
view.project.read(cx).visible_worktrees(cx).count() > 1;
|
|
||||||
items.extend(view.matches[range].iter().enumerate().map(move |(ix, m)| {
|
|
||||||
view.render_match(m, start + ix, show_worktree_root_name, cx)
|
|
||||||
}));
|
|
||||||
},
|
|
||||||
);
|
|
||||||
|
|
||||||
Container::new(list.boxed())
|
|
||||||
.with_margin_top(6.0)
|
|
||||||
.named("matches")
|
|
||||||
}
|
|
||||||
|
|
||||||
fn render_match(
|
|
||||||
&self,
|
|
||||||
string_match: &StringMatch,
|
|
||||||
index: usize,
|
|
||||||
show_worktree_root_name: bool,
|
|
||||||
cx: &AppContext,
|
|
||||||
) -> ElementBox {
|
|
||||||
let settings = cx.global::<Settings>();
|
|
||||||
let style = if index == self.selected_match_index {
|
|
||||||
&settings.theme.selector.active_item
|
|
||||||
} else {
|
|
||||||
&settings.theme.selector.item
|
|
||||||
};
|
|
||||||
let symbol = &self.symbols[string_match.candidate_id];
|
|
||||||
let syntax_runs = styled_runs_for_code_label(&symbol.label, &settings.theme.editor.syntax);
|
|
||||||
|
|
||||||
let mut path = symbol.path.to_string_lossy();
|
|
||||||
if show_worktree_root_name {
|
|
||||||
let project = self.project.read(cx);
|
|
||||||
if let Some(worktree) = project.worktree_for_id(symbol.worktree_id, cx) {
|
|
||||||
path = Cow::Owned(format!(
|
|
||||||
"{}{}{}",
|
|
||||||
worktree.read(cx).root_name(),
|
|
||||||
std::path::MAIN_SEPARATOR,
|
|
||||||
path.as_ref()
|
|
||||||
));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
Flex::column()
|
|
||||||
.with_child(
|
|
||||||
Text::new(symbol.label.text.clone(), style.label.text.clone())
|
|
||||||
.with_soft_wrap(false)
|
|
||||||
.with_highlights(combine_syntax_and_fuzzy_match_highlights(
|
|
||||||
&symbol.label.text,
|
|
||||||
style.label.text.clone().into(),
|
|
||||||
syntax_runs,
|
|
||||||
&string_match.positions,
|
|
||||||
))
|
|
||||||
.boxed(),
|
|
||||||
)
|
|
||||||
.with_child(
|
|
||||||
// Avoid styling the path differently when it is selected, since
|
|
||||||
// the symbol's syntax highlighting doesn't change when selected.
|
|
||||||
Label::new(path.to_string(), settings.theme.selector.item.label.clone()).boxed(),
|
|
||||||
)
|
|
||||||
.contained()
|
|
||||||
.with_style(style.container)
|
|
||||||
.boxed()
|
|
||||||
}
|
|
||||||
|
|
||||||
fn on_query_editor_event(
|
|
||||||
&mut self,
|
|
||||||
_: ViewHandle<Editor>,
|
|
||||||
event: &editor::Event,
|
|
||||||
cx: &mut ViewContext<Self>,
|
|
||||||
) {
|
|
||||||
match event {
|
|
||||||
editor::Event::Blurred => cx.emit(Event::Dismissed),
|
|
||||||
editor::Event::BufferEdited { .. } => self.update_matches(cx),
|
|
||||||
_ => {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
fn on_event(
|
fn on_event(
|
||||||
workspace: &mut Workspace,
|
workspace: &mut Workspace,
|
||||||
_: ViewHandle<Self>,
|
_: ViewHandle<Self>,
|
||||||
|
@ -369,3 +161,108 @@ impl ProjectSymbolsView {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
impl PickerDelegate for ProjectSymbolsView {
|
||||||
|
fn confirm(&mut self, cx: &mut ViewContext<Self>) {
|
||||||
|
if let Some(symbol) = self
|
||||||
|
.matches
|
||||||
|
.get(self.selected_match_index)
|
||||||
|
.map(|mat| self.symbols[mat.candidate_id].clone())
|
||||||
|
{
|
||||||
|
cx.emit(Event::Selected(symbol));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
fn dismiss(&mut self, cx: &mut ViewContext<Self>) {
|
||||||
|
cx.emit(Event::Dismissed);
|
||||||
|
}
|
||||||
|
|
||||||
|
fn match_count(&self) -> usize {
|
||||||
|
self.matches.len()
|
||||||
|
}
|
||||||
|
|
||||||
|
fn selected_index(&self) -> usize {
|
||||||
|
self.selected_match_index
|
||||||
|
}
|
||||||
|
|
||||||
|
fn set_selected_index(&mut self, ix: usize, cx: &mut ViewContext<Self>) {
|
||||||
|
self.selected_match_index = ix;
|
||||||
|
cx.notify();
|
||||||
|
}
|
||||||
|
|
||||||
|
fn update_matches(&mut self, query: String, cx: &mut ViewContext<Self>) -> Task<()> {
|
||||||
|
self.filter(&query, cx);
|
||||||
|
self.show_worktree_root_name = self.project.read(cx).visible_worktrees(cx).count() > 1;
|
||||||
|
let symbols = self
|
||||||
|
.project
|
||||||
|
.update(cx, |project, cx| project.symbols(&query, cx));
|
||||||
|
cx.spawn_weak(|this, mut cx| async move {
|
||||||
|
let symbols = symbols.await.log_err();
|
||||||
|
if let Some(this) = this.upgrade(&cx) {
|
||||||
|
if let Some(symbols) = symbols {
|
||||||
|
this.update(&mut cx, |this, cx| {
|
||||||
|
this.match_candidates = symbols
|
||||||
|
.iter()
|
||||||
|
.enumerate()
|
||||||
|
.map(|(id, symbol)| {
|
||||||
|
StringMatchCandidate::new(
|
||||||
|
id,
|
||||||
|
symbol.label.text[symbol.label.filter_range.clone()]
|
||||||
|
.to_string(),
|
||||||
|
)
|
||||||
|
})
|
||||||
|
.collect();
|
||||||
|
this.symbols = symbols;
|
||||||
|
this.filter(&query, cx);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
})
|
||||||
|
}
|
||||||
|
|
||||||
|
fn render_match(&self, ix: usize, selected: bool, cx: &AppContext) -> ElementBox {
|
||||||
|
let string_match = &self.matches[ix];
|
||||||
|
let settings = cx.global::<Settings>();
|
||||||
|
let style = if selected {
|
||||||
|
&settings.theme.selector.active_item
|
||||||
|
} else {
|
||||||
|
&settings.theme.selector.item
|
||||||
|
};
|
||||||
|
let symbol = &self.symbols[string_match.candidate_id];
|
||||||
|
let syntax_runs = styled_runs_for_code_label(&symbol.label, &settings.theme.editor.syntax);
|
||||||
|
|
||||||
|
let mut path = symbol.path.to_string_lossy();
|
||||||
|
if self.show_worktree_root_name {
|
||||||
|
let project = self.project.read(cx);
|
||||||
|
if let Some(worktree) = project.worktree_for_id(symbol.worktree_id, cx) {
|
||||||
|
path = Cow::Owned(format!(
|
||||||
|
"{}{}{}",
|
||||||
|
worktree.read(cx).root_name(),
|
||||||
|
std::path::MAIN_SEPARATOR,
|
||||||
|
path.as_ref()
|
||||||
|
));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
Flex::column()
|
||||||
|
.with_child(
|
||||||
|
Text::new(symbol.label.text.clone(), style.label.text.clone())
|
||||||
|
.with_soft_wrap(false)
|
||||||
|
.with_highlights(combine_syntax_and_fuzzy_match_highlights(
|
||||||
|
&symbol.label.text,
|
||||||
|
style.label.text.clone().into(),
|
||||||
|
syntax_runs,
|
||||||
|
&string_match.positions,
|
||||||
|
))
|
||||||
|
.boxed(),
|
||||||
|
)
|
||||||
|
.with_child(
|
||||||
|
// Avoid styling the path differently when it is selected, since
|
||||||
|
// the symbol's syntax highlighting doesn't change when selected.
|
||||||
|
Label::new(path.to_string(), settings.theme.selector.item.label.clone()).boxed(),
|
||||||
|
)
|
||||||
|
.contained()
|
||||||
|
.with_style(style.container)
|
||||||
|
.boxed()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue