]> Cypherpunks repositories - gostls13.git/commitdiff
misc/vim: Add rune keyword
authorJongmin Kim <atomaths@gmail.com>
Wed, 26 Oct 2011 22:13:06 +0000 (09:13 +1100)
committerDavid Symonds <dsymonds@golang.org>
Wed, 26 Oct 2011 22:13:06 +0000 (09:13 +1100)
According to adding rune type

R=adg, dsymonds
CC=golang-dev
https://golang.org/cl/5319048

misc/vim/syntax/go.vim

index 7ede9d59e10e175579790d01ee6977be70d912a9..7c17534be79aeedc02ae554c4e03eb887adde3f8 100644 (file)
@@ -68,7 +68,7 @@ hi def link     goRepeat            Repeat
 
 " Predefined types
 syn keyword     goType              chan map bool string
-syn keyword     goSignedInts        int int8 int16 int32 int64
+syn keyword     goSignedInts        int int8 int16 int32 int64 rune
 syn keyword     goUnsignedInts      byte uint uint8 uint16 uint32 uint64 uintptr
 syn keyword     goFloats            float32 float64
 syn keyword     goComplexes         complex64 complex128