better-go-syntax icon indicating copy to clipboard operation
better-go-syntax copied to clipboard

💾 📦 ✅

Results 20 better-go-syntax issues
Sort by recently updated
recently updated
newest added

Originally from @bruce-quickplay in https://github.com/microsoft/vscode/issues/191339 Type: Bug I have found what I believe to be an issue with Go language syntax highlighting. Constants that are declared with an explicit type...

I've noticed that most of the "jeff hykin" VSCode extensions have made their way over to [the VSCodium marketplace,](https://open-vsx.org/namespace/jeff-hykin) but neither `better-go-syntax` nor `better-syntax` megapack appear to be there. I'm...

The following code breaks syntax highlighting: ```go type myString[D interface{}] string var properlyColored string = `Multi-line string with no generic type is colored properly.` var notProperlyColored myString[int] = `Multi-line string...

Bumps [markdown-it](https://github.com/markdown-it/markdown-it) to 12.3.2 and updates ancestor dependency [vsce](https://github.com/Microsoft/vsce). These dependencies need to be updated together. Updates `markdown-it` from 10.0.0 to 12.3.2 Changelog Sourced from markdown-it's changelog. [12.3.2] - 2022-01-08...

dependencies

Forwarded from https://github.com/microsoft/vscode/issues/157739 The go grammar does not seem to tokenize that correctly ![image](https://user-images.githubusercontent.com/6461412/186876737-35a18640-22ec-430f-923b-5389045a80b2.png) ``` type userData struct { name string id int } ```

It seems that the recent [commit a3156b69e4721238553c0dabb0ad64edc3bb3894](https://github.com/jeff-hykin/better-go-syntax/commit/a3156b69e4721238553c0dabb0ad64edc3bb3894) falsely assigns a struct fields type the variable scope, if the type is qualified with the package name. ![image](https://user-images.githubusercontent.com/34490418/175271450-a5499ba3-8962-4ad3-b7e9-9f9d8c1fcf99.png)

*(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...

https://www.doxygen.nl/index.html https://www.oracle.com/technical-resources/articles/java/javadoc-tool.html As the code below, ```go /** * @file test.go * @author your name ([email protected]) * @brief a test file * @version 0.1 * @date 2021-05-18 * * @copyright...

There's new Go 1.19 markup syntax in doc comments for headings, lists, pre-formatted blocks, and links: https://github.com/golang/go/issues/51082 It might be accentuated with the right colors. Could help hint to programmers...