Restructure and start working on CLI

This commit is contained in:
Fabian Stamm
2025-05-26 16:43:40 +02:00
parent 883b6da7eb
commit b61518de00
38 changed files with 134 additions and 8 deletions

17
zed/src/lib.rs Normal file
View 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);