From 0d8fb375edfa0840b4b44bce6f39cfe52011c402 Mon Sep 17 00:00:00 2001 From: Jongmin Kim Date: Thu, 27 Oct 2011 09:13:06 +1100 Subject: [PATCH] misc/vim: Add rune keyword According to adding rune type R=adg, dsymonds CC=golang-dev https://golang.org/cl/5319048 --- misc/vim/syntax/go.vim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc/vim/syntax/go.vim b/misc/vim/syntax/go.vim index 7ede9d59e10..7c17534be79 100644 --- a/misc/vim/syntax/go.vim +++ b/misc/vim/syntax/go.vim @@ -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