Match nim type on single chars as well

This commit is contained in:
Joey Yakimowich-Payne 2022-12-21 07:34:25 -07:00
commit d603c6166b
No known key found for this signature in database
GPG key ID: 6BFE655FA5ABD1E1

View file

@ -59,7 +59,7 @@ syn keyword nimKeyword lent sink iterable owned auto any
syn match nimFunction "[a-zA-Z_][a-zA-Z0-9_]*" contained
syn match nimPragma "[a-zA-Z_][a-zA-Z0-9_]*" contained
syn match nimClass "[a-zA-Z_][a-zA-Z0-9_]*" contained
syn match nimType "\v<[A-Z][a-zA-Z0-9_]+>"
syn match nimType "\v<[A-Z][a-zA-Z0-9_]*>"
syn keyword nimRepeat for while
syn keyword nimConditional if elif else case of when try except return finally
syn keyword nimOperator and in is not or xor shl shr div