aboutsummaryrefslogtreecommitdiff
path: root/crates/ide_db/src/helpers/insert_use.rs
Commit message (Collapse)AuthorAgeFilesLines
* Fix edge case for ImportGranularity guessingLukas Wirth2021-06-081-7/+11
|
* Check for differing attributes in granularity guessingLukas Tobias Wirth2021-05-201-6/+8
|
* Replace ImportGranularity::Guess with guessing boolean flagLukas Tobias Wirth2021-05-191-18/+67
|
* Add ImportGranularity::GuessLukas Tobias Wirth2021-05-181-12/+4
|
* Implement import-granularity guessingLukas Tobias Wirth2021-05-181-2/+33
|
* MergeBehavior -> ImportGranularityLukas Tobias Wirth2021-05-181-2/+25
|
* Split out merge_imports module from helpers::insert_useLukas Wirth2021-04-241-317/+7
|
* Add cov_marks to insert_use testsLukas Wirth2021-04-201-1/+16
|
* Remove SyntaxRewriter usage in insert_use in favor of tedLukas Wirth2021-04-201-165/+97
|
* Cleanup ide_db importsLukas Wirth2021-03-271-1/+2
|
* syntax: return owned string instead of leaking stringcynecx2021-03-261-1/+1
|
* rewrite merge use trees assist to use muatable syntax treesAleksey Kladov2021-03-221-2/+2
| | | | changelog internal
* Reexport PrefixKind to remove deps to hirEdwin Cheng2021-03-221-1/+3
|
* avoid converting types into themselves via .into() (clippy::useless-conversion)Matthias Krüger2021-03-171-1/+1
| | | | example: let x: String = String::from("hello world").into();
* Use upstream cov-markLaurențiu Nicola2021-03-081-4/+3
|
* Make group imports configurableasv2021-03-071-3/+14
|
* .Aleksey Kladov2021-01-191-1/+1
|
* Share import_assets and related entitiesKirill Bulatov2021-01-161-0/+6
|
* Add Unmerge Use assistunexge2021-01-151-1/+1
|
* Handle self/super/crate in PathSegment as NameRefLukas Wirth2021-01-151-2/+8
|
* Do not merge imports with different attributesJesse Bakker2020-12-181-1/+14
|
* Normalize spelling to American EnglishAleksey Kladov2020-12-101-10/+10
|
* Extract tests module to file in ide_db crateDaiki Ihara2020-12-031-638/+1
|
* Fix use merging not using the first path segmentLukas Wirth2020-11-301-1/+10
|
* Move the helpers into ide_dbKirill Bulatov2020-11-281-0/+1204