]> Cypherpunks repositories - gostls13.git/commitdiff
misc/bbedit: treat predeclared identifiers as "keywords"
authorAnthony Starks <ajstarks@gmail.com>
Tue, 23 Feb 2010 21:50:46 +0000 (13:50 -0800)
committerRuss Cox <rsc@golang.org>
Tue, 23 Feb 2010 21:50:46 +0000 (13:50 -0800)
R=rsc
CC=golang-dev
https://golang.org/cl/218064

misc/bbedit/Go.plist

index 1a2c78ca7eb85eb39535de862e6d248b878abfb8..d7b05ca21c4f3363aadf5979f41d9f8d047c6cca 100755 (executable)
@@ -6,7 +6,10 @@
        BBLMColorsSyntax = YES;
        BBLMIsCaseSensitive = YES;
        BBLMKeywordList = (
+               bool,
                break,
+               byte,
+               cap,
                case,         
                chan,
                const,
                defer,
                else,
                fallthrough,
+               false,
+               float,
+               float32,
+               float64,
                for,
                func,         
                go,
                goto,
                if,
+               iota,
                import,
-               interface,    
+               int,
+               int16,
+               int32,
+               int64,
+               int8,
+               interface,
+               len,
+               make,
                map,
+               new,
+               nil,
                package,
                range,
                return,
                select,
+               string,
                struct,
                switch,
+               true,
                type,
+               uint,
+               uint16,
+               uint32,
+               uint64,
+               uint8,
+               uintptr,
                var,
        );
        BBLMLanguageCode = go;