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

Java Extension no longer highlights all occurrences of the word under the cursor in Java files

Open vitalyla opened this issue 1 year ago • 20 comments

After recent update of VS Code and Java Language Support extension(s), the highlight of the elements under cursor no longer working (please see snapshots below).

Environment
  • Operating System: MacOS Sonoma 14.7, Win 10/11
  • JDK version: 17
  • Visual Studio Code version: 1.93.1
  • Java extension version: v1.35.0
Steps To Reproduce
  1. Open any Java source file.
  2. Put the cursor on any variable (field, parameter).
Current Result
  • Highlight of the same elements as under the cursor doesn't happen.

image

Expected Result
  • Highlight of the same elements as under the cursor does happen.

image

vitalyla avatar Sep 28 '24 23:09 vitalyla

I can't reproduce the issue on Linux or Windows. @vitalyla could you attach a project example reproducing the issue?

snjeza avatar Sep 29 '24 03:09 snjeza

I can reproduce the issue on Windows. Tell me, does this issue go away if you revert to version 1.34.0 of the extension? (In the extensions menu, click the gear icon on the extension and select Install Specific Version...)

Obscure2020 avatar Sep 30 '24 00:09 Obscure2020

Hi @Obscure2020 , @snjeza ,

I will try with version 1.34.0. and update.

Meanwhile, I just updated to version 1.35.1 of the extension and the issue persists. Also, when I double-click the element the "yellow" marks on the minimap, showing all occurrences, no longer available as well.

Thanks Vitaly L.

vitalyla avatar Sep 30 '24 16:09 vitalyla

Hi @Obscure2020 , @snjeza ,

I tested with 1.34.0 and 1.32.0 and the issue is the same. However, I noticed something interesting that can hint to the root cause.

Steps:

  1. keep cursor on a curtain field or method parameter
  2. close (Cmd+Q) VScode
  3. open VScode, cursor remembers last position, the highlight is working. But, as soon as I change cursor's position the issues reproduced.

Thanks Vitaly L.

vitalyla avatar Sep 30 '24 16:09 vitalyla

I had same problem. Disabling all Spring Boot extensions solved the issue.

simogab98 avatar Oct 01 '24 11:10 simogab98

Hi,

Any update on the issue? The current behavior noticeably reduces the work experience with Java projects, especially long and legacy ones.

Thanks Vitaly L.

vitalyla avatar Oct 07 '24 16:10 vitalyla

Can confirm that it seems the Spring Boot extensions are conflicting somehow, as @simogab98 said disabling these allows it to work again

ashbostock avatar Oct 08 '24 09:10 ashbostock

Yes, verified the same as well, however, disabling Spring Boot extension is not the solution. It shows possible root cause but requires to be taken forward to understand where is a clash between two extensions. Both of them are needed for efficient and productive work on Java Spring (Boot)-based projects.

Vitaly

vitalyla avatar Oct 08 '24 14:10 vitalyla

@vitalyla you can try to add

"boot-java.embedded-syntax-highlighting": false,

to your settings.json and restart VS Code

snjeza avatar Oct 08 '24 15:10 snjeza

@vitalyla you can try to add

"boot-java.embedded-syntax-highlighting": false,

to your settings.json and restart VS Code

I tried changing that setting, but it had no effect on the issue.

marcelopbarros avatar Oct 08 '24 20:10 marcelopbarros

I can reproduce the issue on Windows. Tell me, does this issue go away if you revert to version 1.34.0 of the extension? (In the extensions menu, click the gear icon on the extension and select Install Specific Version...)

@Obscure2020 I tried:

  • v1.32.2024062619
  • v1.33.2024073108
  • v1.34.2024082308
  • v1.35.2024092508
  • v1.35.2024092508
  • v1.36.2024100808

All versions presented the same problem.

marcelopbarros avatar Oct 08 '24 20:10 marcelopbarros

I'm also using MacOS, Sonoma 14.6.1.

It seems like the only thing that works as a workaround is freezing Spring Boot Dashboard to version v0.13.1.

marcelopbarros avatar Oct 08 '24 20:10 marcelopbarros

@martinlippert does that ring a bell?

fbricon avatar Oct 08 '24 20:10 fbricon

I'm also using MacOS, Sonoma 14.6.1.

It seems like the only thing that works as a workaround is freezing Spring Boot Dashboard to version v0.13.1.

I think my test was not accurate, sorry for that. As @vitalyla pointed, highlight seems to work for a few seconds after restart VSCode. I realize downgrade doesn't seem to really solve the problem.

3. open VScode, cursor remembers last position, the highlight is working. But, as soon as I change cursor's position the issues reproduced.

I was also using VSCode 1.93.1, exactly the same as @vitalyla, but I tried a newer version (1.94.1) with no success.

For now, it seems the only way to work is disabling Spring Boot Tools.

marcelopbarros avatar Oct 08 '24 21:10 marcelopbarros

This seems to be a similar issue: https://github.com/redhat-developer/vscode-java/issues/3789 Looking into this.

martinlippert avatar Oct 09 '24 09:10 martinlippert

I can reproduce this with the Spring Boot Tools extension being active. As soon as I disable that extension, the highlighting works again nicely. This seems to be unrelated to the Spring Boot Dashboard extension.

(there might be some confusion coming up because the dashboard extension depends on the Spring Boot Tools extension and is therefore automatically disabled as well when you disable the Spring Boot Tools extension)

I filed https://github.com/spring-projects/sts4/issues/1380 to track work on this in the Spring Tools extension. Sorry for causing this issue.

martinlippert avatar Oct 09 '24 09:10 martinlippert

I pushed a fix for this to the Spring Tools, now waiting for CI builds to ship this to you as a pre-release... Stay tuned...

martinlippert avatar Oct 09 '24 10:10 martinlippert

The latest pre-release of the Spring Boot Tools extension got published if you want to give it a try.

Switch to the latest pre-release from within your VSCode installation works by looking up the Spring Boot Tools in the list of installed extensions and then "Switch to Pre-Release Version".

martinlippert avatar Oct 09 '24 14:10 martinlippert

Hi @martinlippert ,

Thanks a lot! I just tried pre-release of the SB Tools and syntax highlighting works flawlessly. Looking forward to official release of the SB Tools, for now staying with pre-release.

vitalyla avatar Oct 09 '24 14:10 vitalyla

thanks @martinlippert!

fbricon avatar Oct 09 '24 14:10 fbricon

Hi,

I installed the recent release version of SBT extension, Spring Boot Tools v1.58.0, and highlighting in Java files works as before.

Thanks everyone for the help and timely resolution.

Vitaly

vitalyla avatar Oct 28 '24 15:10 vitalyla