Support @-mentions in inline assists and when editing old agent panel messages (#29734)
Closes #ISSUE Co-authored-by: Bennet <bennet@zed.dev> Release Notes: - Added support for context `@mentions` in the inline prompt editor and when editing past messages in the agent panel. --------- Co-authored-by: Bennet Bo Fenner <bennet@zed.dev> Co-authored-by: Ben Brandt <benjamin.j.brandt@gmail.com>
This commit is contained in:
parent
c918f6cde1
commit
9547d42b15
18 changed files with 499 additions and 156 deletions
|
@ -1054,7 +1054,7 @@ impl ContextEditor {
|
|||
|_, _, _, _| Empty.into_any_element(),
|
||||
)
|
||||
.with_metadata(CreaseMetadata {
|
||||
icon: IconName::Ai,
|
||||
icon_path: SharedString::from(IconName::Ai.path()),
|
||||
label: "Thinking Process".into(),
|
||||
}),
|
||||
);
|
||||
|
@ -1097,7 +1097,7 @@ impl ContextEditor {
|
|||
FoldPlaceholder {
|
||||
render: render_fold_icon_button(
|
||||
cx.entity().downgrade(),
|
||||
section.icon,
|
||||
section.icon.path().into(),
|
||||
section.label.clone(),
|
||||
),
|
||||
merge_adjacent: false,
|
||||
|
@ -1107,7 +1107,7 @@ impl ContextEditor {
|
|||
|_, _, _, _| Empty.into_any_element(),
|
||||
)
|
||||
.with_metadata(CreaseMetadata {
|
||||
icon: section.icon,
|
||||
icon_path: section.icon.path().into(),
|
||||
label: section.label,
|
||||
}),
|
||||
);
|
||||
|
@ -2055,7 +2055,7 @@ impl ContextEditor {
|
|||
FoldPlaceholder {
|
||||
render: render_fold_icon_button(
|
||||
weak_editor.clone(),
|
||||
metadata.crease.icon,
|
||||
metadata.crease.icon_path.clone(),
|
||||
metadata.crease.label.clone(),
|
||||
),
|
||||
..Default::default()
|
||||
|
@ -2851,7 +2851,7 @@ fn render_thought_process_fold_icon_button(
|
|||
|
||||
fn render_fold_icon_button(
|
||||
editor: WeakEntity<Editor>,
|
||||
icon: IconName,
|
||||
icon_path: SharedString,
|
||||
label: SharedString,
|
||||
) -> Arc<dyn Send + Sync + Fn(FoldId, Range<Anchor>, &mut App) -> AnyElement> {
|
||||
Arc::new(move |fold_id, fold_range, _cx| {
|
||||
|
@ -2859,7 +2859,7 @@ fn render_fold_icon_button(
|
|||
ButtonLike::new(fold_id)
|
||||
.style(ButtonStyle::Filled)
|
||||
.layer(ElevationIndex::ElevatedSurface)
|
||||
.child(Icon::new(icon))
|
||||
.child(Icon::from_path(icon_path.clone()))
|
||||
.child(Label::new(label.clone()).single_line())
|
||||
.on_click(move |_, window, cx| {
|
||||
editor
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue