diff options
author | Aleksey Kladov <[email protected]> | 2020-02-18 11:33:16 +0000 |
---|---|---|
committer | Aleksey Kladov <[email protected]> | 2020-02-18 11:33:16 +0000 |
commit | c0fa5e2246457df10e92c2e11c971f2f40921793 (patch) | |
tree | 323d890c830b14c222113fa8617070c3b1fde3d2 /crates/ra_lsp_server/src | |
parent | 4d307ff8024c8d2d533bc3ab7aac1d63ca5c5977 (diff) |
Rename the binary to rust-analyzer
Diffstat (limited to 'crates/ra_lsp_server/src')
-rw-r--r-- | crates/ra_lsp_server/src/bin/args.rs | 16 | ||||
-rw-r--r-- | crates/ra_lsp_server/src/bin/main.rs | 6 | ||||
-rw-r--r-- | crates/ra_lsp_server/src/main_loop.rs | 2 |
3 files changed, 12 insertions, 12 deletions
diff --git a/crates/ra_lsp_server/src/bin/args.rs b/crates/ra_lsp_server/src/bin/args.rs index 3890fe13a..5ad3963a2 100644 --- a/crates/ra_lsp_server/src/bin/args.rs +++ b/crates/ra_lsp_server/src/bin/args.rs | |||
@@ -5,7 +5,7 @@ | |||
5 | 5 | ||
6 | use anyhow::{bail, Result}; | 6 | use anyhow::{bail, Result}; |
7 | use pico_args::Arguments; | 7 | use pico_args::Arguments; |
8 | use ra_lsp_server::cli::{BenchWhat, Position, Verbosity}; | 8 | use rust_analyzer::cli::{BenchWhat, Position, Verbosity}; |
9 | 9 | ||
10 | use std::{fmt::Write, path::PathBuf}; | 10 | use std::{fmt::Write, path::PathBuf}; |
11 | 11 | ||
@@ -74,7 +74,7 @@ impl Args { | |||
74 | ra-cli-parse | 74 | ra-cli-parse |
75 | 75 | ||
76 | USAGE: | 76 | USAGE: |
77 | ra_lsp_server parse [FLAGS] | 77 | rust-analyzer parse [FLAGS] |
78 | 78 | ||
79 | FLAGS: | 79 | FLAGS: |
80 | -h, --help Prints help inforamtion | 80 | -h, --help Prints help inforamtion |
@@ -94,7 +94,7 @@ FLAGS: | |||
94 | ra-cli-symbols | 94 | ra-cli-symbols |
95 | 95 | ||
96 | USAGE: | 96 | USAGE: |
97 | ra_lsp_server highlight [FLAGS] | 97 | rust-analyzer highlight [FLAGS] |
98 | 98 | ||
99 | FLAGS: | 99 | FLAGS: |
100 | -h, --help Prints help inforamtion" | 100 | -h, --help Prints help inforamtion" |
@@ -113,7 +113,7 @@ FLAGS: | |||
113 | ra-cli-highlight | 113 | ra-cli-highlight |
114 | 114 | ||
115 | USAGE: | 115 | USAGE: |
116 | ra_lsp_server highlight [FLAGS] | 116 | rust-analyzer highlight [FLAGS] |
117 | 117 | ||
118 | FLAGS: | 118 | FLAGS: |
119 | -h, --help Prints help information | 119 | -h, --help Prints help information |
@@ -133,7 +133,7 @@ FLAGS: | |||
133 | ra-cli-analysis-stats | 133 | ra-cli-analysis-stats |
134 | 134 | ||
135 | USAGE: | 135 | USAGE: |
136 | ra_lsp_server analysis-stats [FLAGS] [OPTIONS] [PATH] | 136 | rust-analyzer analysis-stats [FLAGS] [OPTIONS] [PATH] |
137 | 137 | ||
138 | FLAGS: | 138 | FLAGS: |
139 | -h, --help Prints help information | 139 | -h, --help Prints help information |
@@ -168,10 +168,10 @@ ARGS: | |||
168 | if matches.contains(["-h", "--help"]) { | 168 | if matches.contains(["-h", "--help"]) { |
169 | eprintln!( | 169 | eprintln!( |
170 | "\ | 170 | "\ |
171 | ra_lsp_server-analysis-bench | 171 | rust-analyzer-analysis-bench |
172 | 172 | ||
173 | USAGE: | 173 | USAGE: |
174 | ra_lsp_server analysis-bench [FLAGS] [OPTIONS] [PATH] | 174 | rust-analyzer analysis-bench [FLAGS] [OPTIONS] [PATH] |
175 | 175 | ||
176 | FLAGS: | 176 | FLAGS: |
177 | -h, --help Prints help information | 177 | -h, --help Prints help information |
@@ -207,7 +207,7 @@ ARGS: | |||
207 | ra-cli | 207 | ra-cli |
208 | 208 | ||
209 | USAGE: | 209 | USAGE: |
210 | ra_lsp_server <SUBCOMMAND> | 210 | rust-analyzer <SUBCOMMAND> |
211 | 211 | ||
212 | FLAGS: | 212 | FLAGS: |
213 | -h, --help Prints help information | 213 | -h, --help Prints help information |
diff --git a/crates/ra_lsp_server/src/bin/main.rs b/crates/ra_lsp_server/src/bin/main.rs index e25d54a0d..69e709a25 100644 --- a/crates/ra_lsp_server/src/bin/main.rs +++ b/crates/ra_lsp_server/src/bin/main.rs | |||
@@ -4,8 +4,8 @@ | |||
4 | mod args; | 4 | mod args; |
5 | 5 | ||
6 | use lsp_server::Connection; | 6 | use lsp_server::Connection; |
7 | use ra_lsp_server::{cli, from_json, show_message, Result, ServerConfig}; | ||
8 | use ra_prof; | 7 | use ra_prof; |
8 | use rust_analyzer::{cli, from_json, show_message, Result, ServerConfig}; | ||
9 | 9 | ||
10 | use crate::args::HelpPrinted; | 10 | use crate::args::HelpPrinted; |
11 | 11 | ||
@@ -51,7 +51,7 @@ fn run_server() -> Result<()> { | |||
51 | log::info!("lifecycle: server started"); | 51 | log::info!("lifecycle: server started"); |
52 | 52 | ||
53 | let (connection, io_threads) = Connection::stdio(); | 53 | let (connection, io_threads) = Connection::stdio(); |
54 | let server_capabilities = serde_json::to_value(ra_lsp_server::server_capabilities()).unwrap(); | 54 | let server_capabilities = serde_json::to_value(rust_analyzer::server_capabilities()).unwrap(); |
55 | 55 | ||
56 | let initialize_params = connection.initialize(server_capabilities)?; | 56 | let initialize_params = connection.initialize(server_capabilities)?; |
57 | let initialize_params = | 57 | let initialize_params = |
@@ -84,7 +84,7 @@ fn run_server() -> Result<()> { | |||
84 | }) | 84 | }) |
85 | .unwrap_or_default(); | 85 | .unwrap_or_default(); |
86 | 86 | ||
87 | ra_lsp_server::main_loop( | 87 | rust_analyzer::main_loop( |
88 | workspace_roots, | 88 | workspace_roots, |
89 | initialize_params.capabilities, | 89 | initialize_params.capabilities, |
90 | server_config, | 90 | server_config, |
diff --git a/crates/ra_lsp_server/src/main_loop.rs b/crates/ra_lsp_server/src/main_loop.rs index 67d8a5f6f..dc16a234d 100644 --- a/crates/ra_lsp_server/src/main_loop.rs +++ b/crates/ra_lsp_server/src/main_loop.rs | |||
@@ -1,4 +1,4 @@ | |||
1 | //! The main loop of `ra_lsp_server` responsible for dispatching LSP | 1 | //! The main loop of `rust-analyzer` responsible for dispatching LSP |
2 | //! requests/replies and notifications back to the client. | 2 | //! requests/replies and notifications back to the client. |
3 | 3 | ||
4 | mod handlers; | 4 | mod handlers; |