]> Cypherpunks repositories - gostls13.git/commitdiff
misc/vim: update list of builtins.
authorDavid Symonds <dsymonds@golang.org>
Sat, 30 Oct 2010 11:07:01 +0000 (22:07 +1100)
committerAndrew Gerrand <adg@golang.org>
Sat, 30 Oct 2010 11:07:01 +0000 (22:07 +1100)
R=adg
CC=golang-dev
https://golang.org/cl/2807041

misc/vim/syntax/go.vim

index c7c404e40e1c04337eccdfe14e30f174bb81c427..7adbe8e356c8b6915337f100aeb7af367cffe960 100644 (file)
@@ -85,8 +85,8 @@ syn match       goType              /\<func\>/
 syn match       goDeclaration       /^func\>/
 
 " Predefined functions and values
-syn keyword     goBuiltins          cap close closed cmplx copy imag len make
-syn keyword     goBuiltins          new panic panicln print println real
+syn keyword     goBuiltins          append cap close closed cmplx copy imag len
+syn keyword     goBuiltins          make new panic print println real recover
 syn keyword     goConstants         iota true false nil
 
 hi def link     goBuiltins          Keyword