You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Dec 29, 2022. It is now read-only.
$ rls --version
rls 1.36.0 (9692ca8 2019-05-18)
$ cargo new --bin qwer
Created binary (application) `qwer` package
$ cd qwer/
$ cargo add url
Adding url v1.7.2 to dependencies
$ cargo add smart_default
WARN: Added `smart-default` instead of `smart_default`
Adding smart-default v0.5.2 to dependencies
$ rls --cli
...
{"jsonrpc":"2.0","method":"window/progress","params":{"done":true,"id":"progress_0","message":null,"percentage":null,"title":"Indexing"}}
> quit
2: Ack
But if I uncomment pipelining = true in ~/.cargo/config:
$ rm -Rf target/rls/
$ rls --cli
...
error: Option 'error-format' given more than once
{"jsonrpc":"2.0","method":"window/progress","params":{"done":true,"id":"progress_1","message":null,"percentage":null,"title":"Building"}}
{"jsonrpc":"2.0","method":"window/progress","params":{"done":null,"id":"progress_0","message":null,"percentage":null,"title":"Indexing"}}
{"jsonrpc":"2.0","method":"textDocument/publishDiagnostics","params":{"diagnostics":[{"message":"build failed","range":{"end":{"character":0,"line":9999},"start":{"character":0,"line":0}},"severity":1}],"uri":"file:///tmp/qwer/Cargo.toml"}}
{"jsonrpc":"2.0","method":"window/progress","params":{"done":true,"id":"progress_0","message":null,"percentage":null,"title":"Indexing"}}
The text was updated successfully, but these errors were encountered:
But if I uncomment
pipelining = true
in~/.cargo/config
:The text was updated successfully, but these errors were encountered: