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
I'm using LanguageServer.jl 4.5.1 with eglot. Please excuse the s-expression formatting of the JSON RPC requests/responses. So if I hover over @add_2 and attempt to rename to @test, I end up with the following file and see the following request/response pair:
As you can see, the macro invocations are replaced correctly, but the macro definition has duplicate replacements of add_2 with @test. So probably two separate issues? @ sign should be stripped and need to only send the edit for the macro definition once.
I thought perhaps that the issue was that the LanguageServer expected you to send the new name as test instead of @test, but that didn't work either. Does renaming of macros work in the vs-code extension?
The text was updated successfully, but these errors were encountered:
Consider the following file:
I'm using LanguageServer.jl 4.5.1 with eglot. Please excuse the s-expression formatting of the JSON RPC requests/responses. So if I hover over
@add_2
and attempt to rename to@test
, I end up with the following file and see the following request/response pair:As you can see, the macro invocations are replaced correctly, but the macro definition has duplicate replacements of
add_2
with@test
. So probably two separate issues?@
sign should be stripped and need to only send the edit for the macro definition once.I thought perhaps that the issue was that the LanguageServer expected you to send the new name as
test
instead of@test
, but that didn't work either. Does renaming of macros work in the vs-code extension?The text was updated successfully, but these errors were encountered: