aboutsummaryrefslogtreecommitdiff
path: root/crates/ra_ide/src/lib.rs
diff options
context:
space:
mode:
authorbors[bot] <26634292+bors[bot]@users.noreply.github.com>2020-05-21 14:10:00 +0100
committerGitHub <[email protected]>2020-05-21 14:10:00 +0100
commit3cba0dc26b707bebc1865671fd2c5139c1e1c537 (patch)
tree6d77f69e3299d4245ebae8987fc030348ae2ebb9 /crates/ra_ide/src/lib.rs
parent0c2b548b0b5712dcc2f9a4eead57e028b5461ba7 (diff)
parentff28c79ebd4c5a9a27542917940def9d4e66eea6 (diff)
Merge #4552
4552: Transition OnEnter to WorkspaceSnippetEdit r=matklad a=matklad This also changes our handiling of snippet edits on the client side. `editor.insertSnippet` unfortunately forces indentation, which we really don't want to have to deal with. So, let's just implement our manual hacky way of dealing with a simple subset of snippets we actually use in rust-analyzer bors r+ 🤖 Co-authored-by: Aleksey Kladov <[email protected]>
Diffstat (limited to 'crates/ra_ide/src/lib.rs')
-rw-r--r--crates/ra_ide/src/lib.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/crates/ra_ide/src/lib.rs b/crates/ra_ide/src/lib.rs
index 83cb498f7..1d7bacbf6 100644
--- a/crates/ra_ide/src/lib.rs
+++ b/crates/ra_ide/src/lib.rs
@@ -87,7 +87,6 @@ pub use ra_db::{
87pub use ra_ide_db::{ 87pub use ra_ide_db::{
88 change::{AnalysisChange, LibraryData}, 88 change::{AnalysisChange, LibraryData},
89 line_index::{LineCol, LineIndex}, 89 line_index::{LineCol, LineIndex},
90 line_index_utils::translate_offset_with_edit,
91 search::SearchScope, 90 search::SearchScope,
92 source_change::{FileSystemEdit, SourceChange, SourceFileEdit}, 91 source_change::{FileSystemEdit, SourceChange, SourceFileEdit},
93 symbol_index::Query, 92 symbol_index::Query,