Skip to content
This repository was archived by the owner on Oct 2, 2024. It is now read-only.

Commit ddb81e8

Browse files
committed
Bump version to 0.1.3
1 parent 2ae468f commit ddb81e8

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "multi-lsp-proxy"
3-
version = "0.1.2"
3+
version = "0.1.3"
44
edition = "2021"
55
description = "A LSP Proxy to multiple language servers"
66
license = "MIT"

src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,7 @@ async fn run(config: LspConfig) -> Result<()> {
125125
}
126126

127127
// read messages from child LSPs
128+
// TODO: merge server capabilities?
128129
tokio::spawn(async move {
129130
let mut stdout = io::stdout();
130131
let mut map = StreamMap::new();
@@ -149,7 +150,6 @@ async fn run(config: LspConfig) -> Result<()> {
149150

150151
// LSP server main loop
151152
// Read new command, send to all child LSP servers
152-
// and TODO: merge responses
153153
let mut stdin = BufReader::new(io::stdin());
154154
loop {
155155
let content_length = read_content_length(&mut stdin).await?;

0 commit comments

Comments
 (0)