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
For the following function, the second time will fail when try to rename test twice:
test
void hello() { int test3 = 123; test3 = 456; std::cout << test3 << std::endl; }
The text was updated successfully, but these errors were encountered:
Hi, can you be more specific. What you mean with "rename twice"?
I tried
With the cursor under int test3 =, rename to test, and then again, rename to test2. It works as expected for me.
int test3 =
test2
Sorry, something went wrong.
Hi, can you be more specific. What you mean with "rename twice"? I tried void hello() { int test3 = 123; test3 = 456; std::cout << test3 << std::endl; } With the cursor under int test3 =, rename to test, and then again, rename to test2. It works as expected for me.
For my case, there will be following wrong indication when try to rename test:
@hiberabyss can you provide the exact steps (and the cursor position) with a minimal init.vim?
No branches or pull requests
For the following function, the second time will fail when try to rename
test
twice:The text was updated successfully, but these errors were encountered: