Go: fix highlighting of non-reserved keywords (atoms) #7153
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
github.com/codemirror/codemirror5@78555dd4ac/mode/go/go.js (L30)Words in this list are highlighted as special keywords regardless of context. For example, it is valid in Go to create a variable called "new". It should only receive special highlighting when used as the builtin function new(expr), and should be treated as a variable otherwise.