We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Version: Deno 2.1.9
function foo({myParam}: {myParam: number}) { console.log(myParam); } const myParam = 3; // select myParam and hit F2 to rename foo({myParam})
Normally when you rename myParam using the F2 key, VSCode turns the last line into:
myParam
F2
foo({myParam: newParam})
But when you perform this same trick with Deno, you get:
foo({newParam})
The text was updated successfully, but these errors were encountered:
I can't reproduce the problem:
Err, nevermind, I read the issue wrong. I can reproduce the problem.
Sorry, something went wrong.
No branches or pull requests
Version: Deno 2.1.9
Normally when you rename
myParam
using theF2
key, VSCode turns the last line into:But when you perform this same trick with Deno, you get:
The text was updated successfully, but these errors were encountered: