diff options
author | Anthony Starks <ajstarks@gmail.com> | 2010-02-23 13:50:46 -0800 |
---|---|---|
committer | Anthony Starks <ajstarks@gmail.com> | 2010-02-23 13:50:46 -0800 |
commit | 380a0f5dea09d82990ba24c5e413377120e029f1 (patch) | |
tree | 61944f336def2fabfbc9299726b96c36b6cce5ef /misc | |
parent | 2d44c324d13aae5e85df70794461f5c60bee1639 (diff) | |
download | golang-380a0f5dea09d82990ba24c5e413377120e029f1.tar.gz |
misc/bbedit: treat predeclared identifiers as "keywords"
R=rsc
CC=golang-dev
http://codereview.appspot.com/218064
Committer: Russ Cox <rsc@golang.org>
Diffstat (limited to 'misc')
-rwxr-xr-x | misc/bbedit/Go.plist | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/misc/bbedit/Go.plist b/misc/bbedit/Go.plist index 1a2c78ca7..d7b05ca21 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; |