diff options
author | Dmitry Sharshakov | 2021-08-13 17:18:15 +0000 |
---|---|---|
committer | Blaž Hrastnik | 2021-08-20 04:43:54 +0000 |
commit | 3d64cf8356044fb272fd0a93e8235f967b9da156 (patch) | |
tree | 9e0b60851c5491f11dfcc6dbb897f6d3db605dda /helix-dap | |
parent | fabee039835e18ec464164f60182689f7489cfe7 (diff) |
fix: move adapter_id out of DAP client
Diffstat (limited to 'helix-dap')
-rw-r--r-- | helix-dap/examples/dap-basic.rs | 2 | ||||
-rw-r--r-- | helix-dap/src/client.rs | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/helix-dap/examples/dap-basic.rs b/helix-dap/examples/dap-basic.rs index 68e8ab54..2e4ff2b1 100644 --- a/helix-dap/examples/dap-basic.rs +++ b/helix-dap/examples/dap-basic.rs @@ -17,7 +17,7 @@ pub async fn main() -> Result<()> { println!("create: {:?}", client); let mut client = client?; - println!("init: {:?}", client.initialize().await); + println!("init: {:?}", client.initialize("go".to_owned()).await); println!("caps: {:#?}", client.capabilities()); println!( "launch: {:?}", diff --git a/helix-dap/src/client.rs b/helix-dap/src/client.rs index cbb24d15..41e7dca6 100644 --- a/helix-dap/src/client.rs +++ b/helix-dap/src/client.rs @@ -350,11 +350,11 @@ impl Client { .expect("language server not yet initialized!") } - pub async fn initialize(&mut self) -> Result<()> { + pub async fn initialize(&mut self, adapter_id: String) -> Result<()> { let args = InitializeArguments { client_id: "hx".to_owned(), client_name: "helix".to_owned(), - adapter_id: "go".to_owned(), + adapter_id, locale: "en-us".to_owned(), lines_start_at_one: true, columns_start_at_one: true, |