Code at the speed of thought – Zed is a high-performance, multiplayer code editor from the creators of Atom and Tree-sitter.
1use plugin::prelude::*; 2 3#[bind] 4pub fn name(_: ()) -> &'static str { 5 "vscode-json-languageserver" 6} 7 8#[bind] 9pub fn server_args(_: ()) -> Vec<String> { 10 vec!["--stdio".into()] 11}