add diagnostics; contanis some bugs

This commit is contained in:
Michael Sippel 2022-10-23 19:29:50 +02:00
parent 906cc51329
commit b2f437d7df
12 changed files with 340 additions and 43 deletions
shell/src

View file

@ -11,6 +11,7 @@ use {
TerminalView,
},
tree_nav::{TerminalTreeEditor, TreeCursor, TreeNav, TreeNavResult},
diagnostics::Diagnostics
},
std::sync::Arc,
std::sync::RwLock,
@ -73,6 +74,9 @@ impl TreeNav for ProcessArg {
}
}
impl Diagnostics for ProcessArg {
}
impl TerminalTreeEditor for ProcessArg {}
pub struct ProcessLauncher {
@ -263,4 +267,8 @@ impl TreeNav for ProcessLauncher {
}
impl Diagnostics for ProcessLauncher {
}
impl TerminalTreeEditor for ProcessLauncher {}