aboutsummaryrefslogtreecommitdiff
path: root/crates/completion/src/config.rs
diff options
context:
space:
mode:
authorKirill Bulatov <[email protected]>2020-11-28 14:30:39 +0000
committerKirill Bulatov <[email protected]>2020-11-28 14:30:39 +0000
commit3f612d37c68a6e4c09e407b7cd2ad8a1d17ab4e6 (patch)
treee51b5ce814d08c79bd667719992c8b7254e4eb68 /crates/completion/src/config.rs
parent7b145bd99c855b2f4a15835a2298dde504b04d8f (diff)
Move the helpers into ide_db
Diffstat (limited to 'crates/completion/src/config.rs')
-rw-r--r--crates/completion/src/config.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crates/completion/src/config.rs b/crates/completion/src/config.rs
index 1995b0754..654a76f7b 100644
--- a/crates/completion/src/config.rs
+++ b/crates/completion/src/config.rs
@@ -4,7 +4,7 @@
4//! module, and we use to statically check that we only produce snippet 4//! module, and we use to statically check that we only produce snippet
5//! completions if we are allowed to. 5//! completions if we are allowed to.
6 6
7use ide_helpers::insert_use::MergeBehaviour; 7use ide_db::helpers::insert_use::MergeBehaviour;
8 8
9#[derive(Clone, Debug, PartialEq, Eq)] 9#[derive(Clone, Debug, PartialEq, Eq)]
10pub struct CompletionConfig { 10pub struct CompletionConfig {