Commit 0d1109a
committed
Fix indent for merge_imports
Example
---
```rust
mod tests {
use foo$0::bar;
use foo::baz;
fn feature() {}
}
```
**Before this PR**
```rust
mod tests {
use foo::{bar, baz};
fn feature() {}
}
```
**After this PR**
```rust
mod tests {
use foo::{bar, baz};
fn feature() {}
}
```1 parent 9d58a93 commit 0d1109a
File tree
2 files changed
+21
-1
lines changed- crates
- ide-assists/src/handlers
- syntax/src/syntax_editor
2 files changed
+21
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
563 | 563 | | |
564 | 564 | | |
565 | 565 | | |
| 566 | + | |
| 567 | + | |
| 568 | + | |
| 569 | + | |
| 570 | + | |
| 571 | + | |
| 572 | + | |
| 573 | + | |
| 574 | + | |
| 575 | + | |
| 576 | + | |
| 577 | + | |
| 578 | + | |
| 579 | + | |
| 580 | + | |
| 581 | + | |
| 582 | + | |
| 583 | + | |
| 584 | + | |
| 585 | + | |
566 | 586 | | |
567 | 587 | | |
568 | 588 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
221 | 221 | | |
222 | 222 | | |
223 | 223 | | |
224 | | - | |
| 224 | + | |
225 | 225 | | |
226 | 226 | | |
227 | 227 | | |
| |||
0 commit comments