I noticed that bool was not being highlighted, all though most other types were highlighted (void, int, etc...). The fix I found for this was in grammars/d.cson, every time the data types were declared, "boolean" was used instead of "bool". This happens 4 times. Switching the word "boolean" to "bool" allowed "bool" to be highlighted in the same manner as other data types. Below are the "fixed" versions with "boolean" changed to "bool".
The first two instances were on lines 733 and 740 (with no wrapping on the code lines)
I noticed that bool was not being highlighted, all though most other types were highlighted (void, int, etc...). The fix I found for this was in grammars/d.cson, every time the data types were declared, "boolean" was used instead of "bool". This happens 4 times. Switching the word "boolean" to "bool" allowed "bool" to be highlighted in the same manner as other data types. Below are the "fixed" versions with "boolean" changed to "bool". The first two instances were on lines 733 and 740 (with no wrapping on the code lines)
and the second two instances were on line 814.