OneDark-Pro
                                
                                
                                
                                    OneDark-Pro copied to clipboard
                            
                            
                            
                        Golang's color scheme supports different constants and variables
Describe what you want
Golang's color scheme supports different constants and variables
Additional context
For the following code
package main
import "fmt"
func f(s string) {
	fmt.Println(s)
}
func main() {
	v := "123"
	const c = "123"
	f(v)
	f(c)
}
The effect in Goland is
But using the OneDark theme on VSCode is
Cannot recognize constants and variables and assign different color schemes.