mirror of
https://github.com/zed-industries/zed.git
synced 2025-02-10 20:29:05 +00:00
Merge pull request #340 from zed-industries/split-project-diagnostics
Allow splitting of project diagnostics
This commit is contained in:
commit
8d7a57a01e
1 changed files with 12 additions and 0 deletions
|
@ -586,6 +586,18 @@ impl workspace::ItemView for ProjectDiagnosticsEditor {
|
||||||
Event::Saved | Event::Dirtied | Event::FileHandleChanged
|
Event::Saved | Event::Dirtied | Event::FileHandleChanged
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn clone_on_split(&self, cx: &mut ViewContext<Self>) -> Option<Self>
|
||||||
|
where
|
||||||
|
Self: Sized,
|
||||||
|
{
|
||||||
|
Some(ProjectDiagnosticsEditor::new(
|
||||||
|
self.model.clone(),
|
||||||
|
self.workspace.clone(),
|
||||||
|
self.settings.clone(),
|
||||||
|
cx,
|
||||||
|
))
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
fn path_header_renderer(buffer: ModelHandle<Buffer>, build_settings: BuildSettings) -> RenderBlock {
|
fn path_header_renderer(buffer: ModelHandle<Buffer>, build_settings: BuildSettings) -> RenderBlock {
|
||||||
|
|
Loading…
Reference in a new issue