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
let secret_number= rand::thread_rng().gen_range(1..=10);
println!("The secret number is: {}", secret_number);
println!("The secret number is: {secret_number}");
if I hit F2 or rename in contextual menu, the extension will properly rename the second line, but not the 3rd.
The extension should rename all valid occurrences of the variable, including line 3 in this example.
The text was updated successfully, but these errors were encountered:
Consider the following code:
if I hit F2 or rename in contextual menu, the extension will properly rename the second line, but not the 3rd.
The extension should rename all valid occurrences of the variable, including line 3 in this example.
The text was updated successfully, but these errors were encountered: