aboutsummaryrefslogtreecommitdiff
path: root/crates/rust-analyzer/src/main_loop/handlers.rs
diff options
context:
space:
mode:
authorAleksey Kladov <[email protected]>2020-04-01 13:32:04 +0100
committerAleksey Kladov <[email protected]>2020-04-01 13:32:04 +0100
commitb9bf29019d1dd733d45bae8aed986ecd330565bc (patch)
tree2da502e16ecd5c6f1e6655b6bcb37db892a536cd /crates/rust-analyzer/src/main_loop/handlers.rs
parent6ac966899853f03ab572ccd2cee8bf5b2a66aaea (diff)
Move config to config.rs
Diffstat (limited to 'crates/rust-analyzer/src/main_loop/handlers.rs')
-rw-r--r--crates/rust-analyzer/src/main_loop/handlers.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/crates/rust-analyzer/src/main_loop/handlers.rs b/crates/rust-analyzer/src/main_loop/handlers.rs
index 80d96f89e..bb99b38a8 100644
--- a/crates/rust-analyzer/src/main_loop/handlers.rs
+++ b/crates/rust-analyzer/src/main_loop/handlers.rs
@@ -31,6 +31,7 @@ use stdx::format_to;
31 31
32use crate::{ 32use crate::{
33 cargo_target_spec::CargoTargetSpec, 33 cargo_target_spec::CargoTargetSpec,
34 config::RustfmtConfig,
34 conv::{ 35 conv::{
35 to_call_hierarchy_item, to_location, Conv, ConvWith, FoldConvCtx, MapConvWith, TryConvWith, 36 to_call_hierarchy_item, to_location, Conv, ConvWith, FoldConvCtx, MapConvWith, TryConvWith,
36 TryConvWithToVec, 37 TryConvWithToVec,
@@ -39,7 +40,7 @@ use crate::{
39 from_json, 40 from_json,
40 req::{self, Decoration, InlayHint, InlayHintsParams}, 41 req::{self, Decoration, InlayHint, InlayHintsParams},
41 semantic_tokens::SemanticTokensBuilder, 42 semantic_tokens::SemanticTokensBuilder,
42 world::{RustfmtConfig, WorldSnapshot}, 43 world::WorldSnapshot,
43 LspError, Result, 44 LspError, Result,
44}; 45};
45 46