mirror of
https://github.com/golang/go
synced 2024-11-21 13:44:45 -07:00
kate: reorganize, remove closed()
R=rsc CC=golang-dev https://golang.org/cl/4325041
This commit is contained in:
parent
2f45f72dce
commit
ac74f14b6b
@ -12,13 +12,13 @@
|
||||
<list name="keywords">
|
||||
<item> break </item>
|
||||
<item> case </item>
|
||||
<item> chan </item>
|
||||
<item> const </item>
|
||||
<item> continue </item>
|
||||
<item> default </item>
|
||||
<item> defer </item>
|
||||
<item> else </item>
|
||||
<item> fallthrough </item>
|
||||
<item> false </item>
|
||||
<item> for </item>
|
||||
<item> func </item>
|
||||
<item> go </item>
|
||||
@ -26,22 +26,25 @@
|
||||
<item> if </item>
|
||||
<item> import </item>
|
||||
<item> interface </item>
|
||||
<item> iota </item>
|
||||
<item> nil </item>
|
||||
<item> map </item>
|
||||
<item> package </item>
|
||||
<item> range </item>
|
||||
<item> return </item>
|
||||
<item> select </item>
|
||||
<item> struct </item>
|
||||
<item> switch </item>
|
||||
<item> true </item>
|
||||
<item> type </item>
|
||||
<item> var </item>
|
||||
</list>
|
||||
<list name="predeclared">
|
||||
<item> false </item>
|
||||
<item> iota </item>
|
||||
<item> nil </item>
|
||||
<item> true </item>
|
||||
</list>
|
||||
<list name="types">
|
||||
<item> bool </item>
|
||||
<item> byte </item>
|
||||
<item> chan </item>
|
||||
<item> complex64 </item>
|
||||
<item> complex128 </item>
|
||||
<item> float32 </item>
|
||||
@ -51,7 +54,6 @@
|
||||
<item> int16 </item>
|
||||
<item> int32 </item>
|
||||
<item> int64 </item>
|
||||
<item> map </item>
|
||||
<item> string </item>
|
||||
<item> uint </item>
|
||||
<item> uintptr </item>
|
||||
@ -64,7 +66,6 @@
|
||||
<item> append </item>
|
||||
<item> cap </item>
|
||||
<item> close </item>
|
||||
<item> closed </item>
|
||||
<item> complex </item>
|
||||
<item> copy </item>
|
||||
<item> imag </item>
|
||||
@ -81,6 +82,8 @@
|
||||
<context attribute="Normal Text" lineEndContext="#stay" name="Normal">
|
||||
<DetectSpaces />
|
||||
<keyword attribute="Keyword" context="#stay" String="keywords"/>
|
||||
<keyword attribute="Predeclared Identifier" context="#stay"
|
||||
String="predeclared"/>
|
||||
<keyword attribute="Data Type" context="#stay" String="types"/>
|
||||
<keyword attribute="Builtin Function" context="#stay" String="functions"/>
|
||||
<DetectIdentifier />
|
||||
@ -119,6 +122,7 @@
|
||||
<itemDatas>
|
||||
<itemData name="Normal Text" defStyleNum="dsNormal" spellChecking="false"/>
|
||||
<itemData name="Keyword" defStyleNum="dsKeyword" spellChecking="false"/>
|
||||
<itemData name="Predeclared Identifier" defStyleNum="dsOthers" spellChecking="false"/>
|
||||
<itemData name="Builtin Function" defStyleNum="dsFunction" spellChecking="false"/>
|
||||
<itemData name="Data Type" defStyleNum="dsDataType" spellChecking="false"/>
|
||||
<itemData name="Decimal" defStyleNum="dsDecVal" spellChecking="false"/>
|
||||
|
Loading…
Reference in New Issue
Block a user