jdinhify / vscode-theme-gruvbox

Gruvbox theme for vscode based on https://github.com/morhetz/gruvbox
https://marketplace.visualstudio.com/items?itemName=jdinhlife.gruvbox
MIT License
267 stars 63 forks source link

go language full support - enhancement req #61

Open Savage1969 opened 1 year ago

Savage1969 commented 1 year ago

If someone is up for it, it would be fantastic if the complete go language syntax was fully supported as it's currently missing quite a bit. including consistent variable and function coloring. Thank you in advance for your consideration.

jdinhify commented 1 year ago

Thanks @Savage1969

It would be great if you could provide some golang snippets & what you think is missing/inconsistent

psidex commented 1 year ago

Hey @jdinhify, the main thing that annoys me is that function calls aren't highlighted:

Code

```go if err := cmd.Wait(); err != nil { return "", cmd.ProcessState.ExitCode(), err } ```

Default color scheme: image

Gruvbox Dark Medium: image

Specifically Wait() and ExitCode() in that example.