*(Originally reported at https://github.com/golang/vscode-go/issues/2273.)* The first import path string is colored white instead of orange. If there are two `import` keywords, the second one is white too. ### Steps to reproduce the behavior: Start a new Go file and paste in this: ```go package p import ("p";"q") import "p";import "q" ``` ### Screenshot <img width="186" alt="Screen Shot 2022-06-01 at 4 59 08 PM" src="https://user-images.githubusercontent.com/63830/171520927-ac532a91-8c81-4af0-b933-11f0917b23c5.png"> ### Versions Found in VS Code, which apparently [copies this repo](https://github.com/golang/vscode-go/issues/2273#issuecomment-1145013999) for its Go syntax highlighting. `go version`: ``` go version go1.18.2 darwin/amd64 ``` `code -v`: ``` 1.67.2 c3511e6c69bb39013c4a4b7b9566ec1ca73fc4d5 x64 ```