Skip to content

Commit 34c7225

Browse files
committed
Changelog #205
1 parent 520a05a commit 34c7225

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

generated_assists.adoc

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3419,7 +3419,7 @@ pub async fn bar() { foo() }
34193419

34203420
[discrete]
34213421
=== `unqualify_method_call`
3422-
**Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/unqualify_method_call.rs#L8[unqualify_method_call.rs]
3422+
**Source:** https://github.com/rust-lang/rust-analyzer/blob/master/crates/ide-assists/src/handlers/unqualify_method_call.rs#L9[unqualify_method_call.rs]
34233423

34243424
Transforms universal function call syntax into a method call.
34253425

@@ -3432,6 +3432,8 @@ fn main() {
34323432

34333433
.After
34343434
```rust
3435+
use std::ops::Add;
3436+
34353437
fn main() {
34363438
1.add(2);
34373439
}
Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
= Changelog #205
2+
:sectanchors:
3+
:experimental:
4+
:page-layout: post
5+
6+
Commit: commit:f493207744da98b31295b02e6ed95b26a927056c[] +
7+
Release: release:2023-10-30[] (`v0.3.1713`)
8+
9+
== Fixes
10+
11+
* pr:15809[] make `extract_variable` assist easier to trigger:
12+
+
13+
image::https://user-images.githubusercontent.com/71162630/278656006-96be2de4-42c9-4b24-b3e1-8b3e3a2da1d9.gif["Screen recording showing the assist triggerring on a method call, if statement and array, without selecting them first."]
14+
* pr:15780[] import trait if needed for `unqualify_method_call` assist:
15+
+
16+
image::https://user-images.githubusercontent.com/71162630/276295073-72ffbda4-1615-4413-836e-480eb52e9728.gif["Screen recording showing an import being added when the assist is used."]
17+
18+
== Internal Improvements
19+
20+
* pr:15806[] bump `scip` dependency.

0 commit comments

Comments
 (0)