Start moving code from Zed to plugin

This commit is contained in:
Isaac Clayton 2022-06-03 15:03:30 +02:00
parent 7dd3114a7a
commit b84948711c
2 changed files with 18 additions and 9 deletions

View file

@ -1,6 +1,11 @@
use plugin::prelude::*;
#[bind]
pub fn add(a: (f64, f64)) -> f64 {
a.0 + a.1
pub fn name(_: ()) -> &'static str {
"vscode-json-languageserver"
}
#[bind]
pub fn server_args(_: ()) -> Vec<String> {
vec!["--stdio".into()]
}