assistant2: Add support for referencing symbols as context (#27513)

TODO

Release Notes:

- N/A
This commit is contained in:
Bennet Bo Fenner 2025-03-28 17:56:14 +01:00 committed by GitHub
parent da47013e56
commit a916bbf00c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
9 changed files with 838 additions and 20 deletions

View file

@ -190,9 +190,10 @@ impl RenderOnce for ContextPill {
.child(
Label::new(match kind {
ContextKind::File => "Active Tab",
ContextKind::Thread | ContextKind::Directory | ContextKind::FetchedUrl => {
"Active"
}
ContextKind::Thread
| ContextKind::Directory
| ContextKind::FetchedUrl
| ContextKind::Symbol => "Active",
})
.size(LabelSize::XSmall)
.color(Color::Muted),