ChadBailey / VSCode-Theme-Dark-Plus-Pure-Black

Visual Studio Code theme - Dark+ but with pure black for OLED displays
MIT License
5 stars 1 forks source link

Rust-analyzer underlining missing #3

Open JoeyBF opened 1 month ago

JoeyBF commented 1 month ago

Rust-analyzer gives useful information about which variables are mutable and which methods mutate through underlining. This extension used to respect that, but now there is no underlining anywhere.

without_theme with_theme

I'm not sure when it stopped exactly, but I remember it did work around July 2023. It's too bad because I love this feature, but I also love the true blacks!

JoeyBF commented 3 weeks ago

For anybody else who has the same issue, adding this to my settings.json did the trick

"editor.semanticTokenColorCustomizations": {
  "enabled": true,
  "rules": {
    "*.mutable": {
      "underline": true
    }
  }
},