]> Cypherpunks repositories - gostls13.git/commitdiff
misc: update type + builtin lists found in editor support files
authorRuss Cox <rsc@golang.org>
Thu, 20 Jan 2011 04:07:49 +0000 (23:07 -0500)
committerRuss Cox <rsc@golang.org>
Thu, 20 Jan 2011 04:07:49 +0000 (23:07 -0500)
R=adg, dsymonds
CC=golang-dev
https://golang.org/cl/4072041

misc/bbedit/Go.plist
misc/fraise/go.plist
misc/kate/go.xml
misc/vim/syntax/go.vim

index 39c8f0dc30e088632392c9c457cd60e6b096a01b..9dc3bf6f17d4598d8ab35a2a612bbb691e5302d6 100755 (executable)
@@ -15,7 +15,6 @@
                chan,
                close,
                closed,
-               cmplx,
                complex,
                complex128,
                complex64,
@@ -27,7 +26,6 @@
                else,
                fallthrough,
                false,
-               float,
                float32,
                float64,
                for,
index 298361501b4348c7ec8f0b2ad35eba4fcecb0314..17f416221ee82d609a5e2d825fc448413de7bcff 100644 (file)
@@ -70,7 +70,6 @@
                <string>chan</string>
                <string>complex64</string>
                <string>complex128</string>
-               <string>float</string>
                <string>float32</string>
                <string>float64</string>
                <string>int</string>
index 3a5c39c9493fc5945a3fc06b7160189ffad5239f..b8ff59267a3a8e47bcd4e2c86f0b333182cfb71b 100644 (file)
       <item> bool </item>
       <item> byte </item>
       <item> chan </item>
-      <item> complex </item>
       <item> complex64 </item>
       <item> complex128 </item>
-      <item> float </item>
       <item> float32 </item>
       <item> float64 </item>
       <item> int </item>
@@ -67,7 +65,7 @@
       <item> cap </item>
       <item> close </item>
       <item> closed </item>
-      <item> cmplx </item>
+      <item> complex </item>
       <item> copy </item>
       <item> imag </item>
       <item> len </item>
index 7adbe8e356c8b6915337f100aeb7af367cffe960..a6b6359187138d4aa791fcc20333e4bf100d2560 100644 (file)
@@ -70,8 +70,8 @@ hi def link     goRepeat            Repeat
 syn keyword     goType              chan map bool string
 syn keyword     goSignedInts        int int8 int16 int32 int64
 syn keyword     goUnsignedInts      byte uint uint8 uint16 uint32 uint64 uintptr
-syn keyword     goFloats            float float32 float64
-syn keyword     goComplexes         complex complex64 complex128
+syn keyword     goFloats            float32 float64
+syn keyword     goComplexes         complex64 complex128
 
 hi def link     goType              Type
 hi def link     goSignedInts        Type
@@ -85,7 +85,7 @@ syn match       goType              /\<func\>/
 syn match       goDeclaration       /^func\>/
 
 " Predefined functions and values
-syn keyword     goBuiltins          append cap close closed cmplx copy imag len
+syn keyword     goBuiltins          append cap close closed complex copy imag len
 syn keyword     goBuiltins          make new panic print println real recover
 syn keyword     goConstants         iota true false nil