Skip to content

Commit

Permalink
enh(gml) fix naming of keyword class (consistency fix) (#2254)
Browse files Browse the repository at this point in the history
  • Loading branch information
liamnobel authored and joshgoebel committed Nov 6, 2019
1 parent 5b9989d commit d95ace7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ New styles:
none.

Improvements:
- enh(gml) fix naming of keyword class (consistency fix) (#2254) [Liam Nobel][]
- enh(javascript): Add support for jsdoc comments (#2245) [Milutin Kristofic][]
- ehh(build) Add CI check for building a "use strict" safe rollup package from NPM builds (#2247) [Josh Goebel][]
- fix(python) fix `if` getting confused as an f-string (#2200) [Josh Goebel][] and [Carl Baxter][]
Expand All @@ -19,9 +20,11 @@ Improvements:
- fix(parser): Better errors when a language is missing (#2236) [Josh Goebel][]

[Josh Goebel]: https://github.com/yyyc514
[Liam Nobel]: https://github.com/liamnobel
[Carl Baxter]: https://github.com/cdbax
[Milutin Kristofic]: https://github.com/milutin


## Version 9.16.2

New languages:
Expand Down
2 changes: 1 addition & 1 deletion src/languages/gml.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Category: scripting

function(hljs) {
var GML_KEYWORDS = {
keywords: 'begin end if then else while do for break continue with until ' +
keyword: 'begin end if then else while do for break continue with until ' +
'repeat exit and or xor not return mod div switch case default var ' +
'globalvar enum #macro #region #endregion',
built_in: 'is_real is_string is_array is_undefined is_int32 is_int64 ' +
Expand Down
2 changes: 1 addition & 1 deletion src/styles/gml.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ GML Theme - Meseta <meseta@gmail.com>
color: #C0C0C0;
}

.hljs-keywords {
.hljs-keyword {
color: #FFB871;
font-weight: bold;
}
Expand Down

0 comments on commit d95ace7

Please sign in to comment.