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

@ -15494,9 +15494,9 @@ impl Editor {
}
}
pub fn project_path(&self, cx: &mut Context<Self>) -> Option<ProjectPath> {
pub fn project_path(&self, cx: &App) -> Option<ProjectPath> {
if let Some(buffer) = self.buffer.read(cx).as_singleton() {
buffer.read_with(cx, |buffer, cx| buffer.project_path(cx))
buffer.read(cx).project_path(cx)
} else {
None
}