From 1834bae5b86c54ed9dece26e82436919d59e6cb7 Mon Sep 17 00:00:00 2001 From: Aleksey Kladov Date: Thu, 4 Jul 2019 23:05:17 +0300 Subject: allow rustfmt to reorder imports This wasn't a right decision in the first place, the feature flag was broken in the last rustfmt release, and syntax highlighting of imports is more important anyway --- crates/ra_ide_api/src/typing.rs | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) (limited to 'crates/ra_ide_api/src/typing.rs') diff --git a/crates/ra_ide_api/src/typing.rs b/crates/ra_ide_api/src/typing.rs index 3e35d8352..d3cb71ddb 100644 --- a/crates/ra_ide_api/src/typing.rs +++ b/crates/ra_ide_api/src/typing.rs @@ -1,13 +1,14 @@ +use crate::{db::RootDatabase, SourceChange, SourceFileEdit}; +use ra_db::{FilePosition, SourceDatabase}; +use ra_fmt::leading_indent; use ra_syntax::{ - AstNode, SourceFile, SyntaxKind::*, - TextUnit, TextRange, SyntaxToken, algo::{find_node_at_offset, find_token_at_offset, TokenAtOffset}, ast::{self, AstToken}, + AstNode, SourceFile, + SyntaxKind::*, + SyntaxToken, TextRange, TextUnit, }; -use ra_fmt::leading_indent; use ra_text_edit::{TextEdit, TextEditBuilder}; -use ra_db::{FilePosition, SourceDatabase}; -use crate::{db::RootDatabase, SourceChange, SourceFileEdit}; pub(crate) fn on_enter(db: &RootDatabase, position: FilePosition) -> Option { let file = db.parse(position.file_id).tree; -- cgit v1.2.3