You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Highlights constructs related to the thing under the cursor:
40
42
//
41
43
// . if on an identifier, highlights all references to that identifier in the current file
44
+
// .. 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
42
45
// . if on an `async` or `await token, highlights all yield points for that async context
43
46
// . if on a `return` or `fn` keyword, `?` character or `->` return type arrow, highlights all exit points for that context
44
47
// . if on a `break`, `loop`, `while` or `for` token, highlights all break points for that loop or block context
48
+
// . if on a `move` or `|` token that belongs to a closure, highlights all captures of the closure.
45
49
//
46
-
// Note: `?` and `->` do not currently trigger this behavior in the VSCode editor.
50
+
// Note: `?`, `|` and `->` do not currently trigger this behavior in the VSCode editor.
0 commit comments