vscode-java icon indicating copy to clipboard operation
vscode-java copied to clipboard

support linked editing

Open maxandersen opened this issue 3 years ago • 1 comments

when enabling linked editing in vscode I would expect that when editing declarations that references would be renamed.

i.e.

String test = "a great string";
test.upper();

if editing "test" in second line nothing should change, but if linked editing enable editing "test" in first line to i.e. "mystring" the "test.upper()" should change to "mystring.upper()"

maxandersen avatar Aug 10 '22 08:08 maxandersen

linked editing is currently not supported, but you can use F2 to rename 'test' and it'll work as you expect

fbricon avatar Aug 10 '22 08:08 fbricon

Closing as a duplicate of https://github.com/eclipse/eclipse.jdt.ls/issues/1919 .

rgrunber avatar Aug 17 '22 15:08 rgrunber