Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
syntax/go: do not treat builtins as keywords
builtins have a very different property from keywords, the identifiers are settable. It is perfectly valid to override the builtins, though hopefully used sparingly. Instead of using `syn keyword`, we now use `syn match` and detect a function call by searching for an open parentheses.
- Loading branch information