Skip to content

Commit 9db0890

Browse files
committed
Changelog #209
1 parent c919e9d commit 9db0890

File tree

3 files changed

+31
-2
lines changed

3 files changed

+31
-2
lines changed

generated_features.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -323,7 +323,7 @@ Highlights constructs related to the thing under the cursor:
323323

324324
. if on an identifier, highlights all references to that identifier in the current file
325325
.. additionally, if the identifier is a trait in a where clause, type parameter trait bound or use item, highlights all references to that trait's assoc items in the corresponding scope
326-
. if on an `async` or `await token, highlights all yield points for that async context
326+
. if on an `async` or `await` token, highlights all yield points for that async context
327327
. if on a `return` or `fn` keyword, `?` character or `->` return type arrow, highlights all exit points for that context
328328
. if on a `break`, `loop`, `while` or `for` token, highlights all break points for that loop or block context
329329
. if on a `move` or `|` token that belongs to a closure, highlights all captures of the closure.

manual.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ $ rustup component add rust-analyzer
174174

175175
The `rust-analyzer` binary can be installed from the repos or AUR (Arch User Repository):
176176

177-
- https://www.archlinux.org/packages/community/x86_64/rust-analyzer/[`rust-analyzer`] (built from latest tagged source)
177+
- https://www.archlinux.org/packages/extra/x86_64/rust-analyzer/[`rust-analyzer`] (built from latest tagged source)
178178
- https://aur.archlinux.org/packages/rust-analyzer-git[`rust-analyzer-git`] (latest Git version)
179179

180180
Install it with pacman, for example:
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
= Changelog #209
2+
:sectanchors:
3+
:experimental:
4+
:page-layout: post
5+
6+
Commit: commit:237712fa314237e428e7ef2ab83b979f928a43a1[] +
7+
Release: release:2023-11-27[] (`v0.3.1748`)
8+
9+
== New Features
10+
11+
* pr:15956[], pr:15962[] (first contribution) improve completion label details display:
12+
+
13+
image::https://user-images.githubusercontent.com/14666676/285445167-45fca112-4612-40a3-81b9-07ff12de0962.png["Screenshot showing the completion label details like the originating trait for a method displayed in gray by VS Code"]
14+
* pr:15846[] (first contribution) add VS Code option to suppress internal error notifications.
15+
16+
== Fixes
17+
18+
* pr:15940[] ensure renames happen after edits.
19+
* pr:15911[] handle default constant values in `trait_impl_missing_assoc_item` diagnostic.
20+
* pr:15825[] better resolve associated item with type bound.
21+
* pr:15754[] de-dup duplicate crates with differing origins in `CrateGraph` construction.
22+
23+
== Internal Improvements
24+
25+
* pr:15894[] (first contribution) make LSP initialization cancellable.
26+
* pr:15944[] (first contribution) update Arch Linux package URL.
27+
* pr:15921[] use `PathSegment::qualifying_trait`.
28+
* pr:15960[] replace `option.map(cond) == Some(true)` with `option.is_some_and(cond)`.
29+
* pr:15967[] switch to our own `salsa` fork.

0 commit comments

Comments
 (0)