@@ -50,6 +50,7 @@ public class GoColorsAndFontsPage implements ColorSettingsPage {
5050 new AttributesDescriptor ("Type specification" , TYPE_SPECIFICATION ),
5151 new AttributesDescriptor ("Type reference" , TYPE_REFERENCE ),
5252 new AttributesDescriptor ("Builtin type" , BUILTIN_TYPE_REFERENCE ),
53+ new AttributesDescriptor ("Builtin function" , BUILTIN_FUNCTION ),
5354 new AttributesDescriptor ("Exported function" , EXPORTED_FUNCTION ),
5455 new AttributesDescriptor ("Local function" , LOCAL_FUNCTION ),
5556 new AttributesDescriptor ("Package exported interface" , PACKAGE_EXPORTED_INTERFACE ),
@@ -74,6 +75,7 @@ public class GoColorsAndFontsPage implements ColorSettingsPage {
7475 ATTRIBUTES_KEY_MAP .put ("tr" , TYPE_REFERENCE );
7576 ATTRIBUTES_KEY_MAP .put ("ts" , TYPE_SPECIFICATION );
7677 ATTRIBUTES_KEY_MAP .put ("bt" , BUILTIN_TYPE_REFERENCE );
78+ ATTRIBUTES_KEY_MAP .put ("bf" , BUILTIN_FUNCTION );
7779 ATTRIBUTES_KEY_MAP .put ("kw" , KEYWORD );
7880 ATTRIBUTES_KEY_MAP .put ("ef" , EXPORTED_FUNCTION );
7981 ATTRIBUTES_KEY_MAP .put ("lf" , LOCAL_FUNCTION );
@@ -225,6 +227,7 @@ public String getDemoText() {
225227 " _ = <lf>variableFunc</lf>(1)\n " +
226228 " _ = <fp>demo1</fp>\n " +
227229 " _ = <lv>demo2</lv>\n " +
230+ " <bf>println</bf>(\" builtin function\" )" +
228231 "\n " +
229232 "}\n " +
230233 "\n " +
0 commit comments