dracula / visual-studio-code

🧛🏻‍♂️ Dark theme for Visual Studio Code
https://draculatheme.com/visual-studio-code
MIT License
776 stars 208 forks source link

Go Highlight #220

Closed qxxiao closed 1 month ago

qxxiao commented 2 years ago

Hi, For Go language highlighting, function call tokens are in the same color as the type.

image And function arguments seem to be a known issue in known_issues.md

dzdiscoveryzone commented 2 years ago

Same here. I briefly had this working in VSCode out of nowhere and then it stopped working again randomly. I've tried overrides and can't seem to get this to work. On the contrast for JetBrains GoLand this works perfectly.

When I ran develop tools, this is what I'm seeing: image

arxeiss commented 1 year ago

This is not issue of Dracula, but issue of gopls. Add this line "gopls": {"ui.semanticTokens": true}, to your settings.json CTRL+Shift+P -> Open User settings (JSON)

dzdiscoveryzone commented 1 year ago

This is not issue of Dracula, but issue of gopls. Add this line "gopls": {"ui.semanticTokens": true}, to your settings.json

CTRL+Shift+P -> Open User settings (JSON)

Thank you @arxeiss! This resolved it for me