aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Starks <ajstarks@gmail.com>2010-02-23 13:50:46 -0800
committerRuss Cox <rsc@golang.org>2010-02-23 13:50:46 -0800
commitb4bd4d926d471656da382b4c77b82f9d1683c927 (patch)
tree290d43beff5dcc6e1749834a32e1fd2ee1fdb33d
parent6a0af8e1188c2adfd45f9e31bc044763fd014406 (diff)
downloadgo-b4bd4d926d471656da382b4c77b82f9d1683c927.tar.gz
go-b4bd4d926d471656da382b4c77b82f9d1683c927.zip
misc/bbedit: treat predeclared identifiers as "keywords"
R=rsc CC=golang-dev https://golang.org/cl/218064
-rwxr-xr-xmisc/bbedit/Go.plist27
1 files changed, 26 insertions, 1 deletions
diff --git a/misc/bbedit/Go.plist b/misc/bbedit/Go.plist
index 1a2c78ca7e..d7b05ca21c 100755
--- a/misc/bbedit/Go.plist
+++ b/misc/bbedit/Go.plist
@@ -6,7 +6,10 @@
BBLMColorsSyntax = YES;
BBLMIsCaseSensitive = YES;
BBLMKeywordList = (
+ bool,
break,
+ byte,
+ cap,
case,
chan,
const,
@@ -15,21 +18,43 @@
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;