Restructure and start working on CLI
This commit is contained in:
17
zed/src/lib.rs
Normal file
17
zed/src/lib.rs
Normal file
@ -0,0 +1,17 @@
|
||||
use zed_extension_api as zed;
|
||||
|
||||
struct JRPCSyntaxExtension {
|
||||
// ... state
|
||||
}
|
||||
|
||||
impl zed::Extension for JRPCSyntaxExtension {
|
||||
fn new() -> Self
|
||||
where
|
||||
Self: Sized,
|
||||
{
|
||||
todo!()
|
||||
}
|
||||
// ...
|
||||
}
|
||||
|
||||
zed::register_extension!(JRPCSyntaxExtension);
|
Reference in New Issue
Block a user