Open hiberabyss opened 3 years ago
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.
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 totest
, and then again, rename totest2
. 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?
For the following function, the second time will fail when try to rename
test
twice: