Start moving code from Zed to plugin
This commit is contained in:
parent
7dd3114a7a
commit
b84948711c
2 changed files with 18 additions and 9 deletions
|
@ -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()]
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue