rust/crates/ide-db
iDawer ea8899a445 Allow merging of multiple selected imports.
The selected imports have to have a common prefix in paths.

Before
```rust
$0use std::fmt::Display;
use std::fmt::Debug;$0
```
After
```rust
use std::fmt::{Display, Debug};
```
2022-06-02 23:15:55 +05:00
..
src Allow merging of multiple selected imports. 2022-06-02 23:15:55 +05:00
Cargo.toml style: rename crates to kebab case 2022-05-01 10:48:58 +00:00