Skip to content

Commit

Permalink
Release 1.2.5
Browse files Browse the repository at this point in the history
  • Loading branch information
Septh committed Nov 29, 2017
1 parent 07cd08a commit b8de1ce
Show file tree
Hide file tree
Showing 11 changed files with 248 additions and 78 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
## 1.2.5
- [language.lua] Updated to match WoW 7.3.0 build 25021.
- [language.lua] Updated to (hopefully) match WoW 7.3.2 build 25549.
- [language.lua] Added support for intendation rules to lua-language-configuration.json

## 1.2.4
Expand Down
18 changes: 12 additions & 6 deletions languages/grammars/wow-lua.tmLanguage

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion themes/theme-defaults/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
{
"id": "vs-minimal",
"label": "Minimal (Visual Studio Code)",
"path": "./fileicons/vs_minimal_icons.json"
"path": "./fileicons/vs_minimal-icon-theme.json"
}
]
}
Expand Down
53 changes: 53 additions & 0 deletions themes/theme-defaults/themes/dark_plus.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,59 @@
"settings": {
"foreground": "#CE9178"
}
},
{
"name": "Regular expression groups",
"scope": [
"punctuation.definition.group.regexp",
"punctuation.definition.group.assertion.regexp",
"punctuation.definition.character-class.regexp",
"punctuation.character.set.begin.regexp",
"punctuation.character.set.end.regexp",
"keyword.operator.negation.regexp",
"support.other.parenthesis.regexp"
],
"settings": {
"foreground": "#CE9178"
}
},
{
"scope": [
"constant.character.character-class.regexp",
"constant.other.character-class.set.regexp",
"constant.other.character-class.regexp",
"constant.character.set.regexp"
],
"settings": {
"foreground": "#d16969"
}
},
{
"scope": [
"keyword.operator.or.regexp",
"keyword.control.anchor.regexp"
],
"settings": {
"foreground": "#DCDCAA"
}
},
{
"scope": "keyword.operator.quantifier.regexp",
"settings": {
"foreground": "#d7ba7d"
}
},
{
"scope": "constant.character",
"settings": {
"foreground": "#569cd6"
}
},
{
"scope": "constant.character.escape",
"settings": {
"foreground": "#d7ba7d"
}
}
]
}
14 changes: 12 additions & 2 deletions themes/theme-defaults/themes/dark_vs.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,16 @@
"background": "#1E1E1E"
}
},
{
"scope": [
"meta.embedded",
"source.groovy.embedded"
],
"settings": {
"foreground": "#D4D4D4",
"background": "#1E1E1E"
}
},
{
"scope": "emphasis",
"settings": {
Expand Down Expand Up @@ -241,11 +251,11 @@
}
},
{
"name": "JavaScript string interpolation ${}",
"name": "String interpolation",
"scope": [
"punctuation.definition.template-expression.begin",
"punctuation.definition.template-expression.end",
"punctuation.section.embedded.coffee"
"punctuation.section.embedded"
],
"settings": {
"foreground": "#569cd6"
Expand Down
20 changes: 18 additions & 2 deletions themes/theme-defaults/themes/hc_black_defaults.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,16 @@
"background": "#000000"
}
},
{
"scope": [
"meta.embedded",
"source.groovy.embedded"
],
"settings": {
"foreground": "#FFFFFF",
"background": "#000000"
}
},
{
"scope": "emphasis",
"settings": {
Expand Down Expand Up @@ -61,6 +71,12 @@
"foreground": "#b46695"
}
},
{
"scope": "constant.character",
"settings": {
"foreground": "#569cd6"
}
},
{
"scope": "entity.name.tag",
"settings": {
Expand Down Expand Up @@ -227,11 +243,11 @@
}
},
{
"name": "JavaScript string interpolation ${}",
"name": "String interpolation",
"scope": [
"punctuation.definition.template-expression.begin",
"punctuation.definition.template-expression.end",
"punctuation.section.embedded.coffee"
"punctuation.section.embedded"
],
"settings": {
"foreground": "#569cd6"
Expand Down
54 changes: 54 additions & 0 deletions themes/theme-defaults/themes/light_plus.json
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,60 @@
"settings": {
"foreground": "#0451a5"
}
},
{
"name": "Regular expression groups",
"scope": [
"punctuation.definition.group.regexp",
"punctuation.definition.group.assertion.regexp",
"punctuation.definition.character-class.regexp",
"punctuation.character.set.begin.regexp",
"punctuation.character.set.end.regexp",
"keyword.operator.negation.regexp",
"support.other.parenthesis.regexp"
],
"settings": {
"foreground": "#d16969"
}
},
{
"scope": [
"constant.character.character-class.regexp",
"constant.other.character-class.set.regexp",
"constant.other.character-class.regexp",
"constant.character.set.regexp"
],
"settings": {
"foreground": "#811f3f"
}
},
{
"scope": "keyword.operator.quantifier.regexp",
"settings": {
"foreground": "#000000"
}
},
{
"scope": [
"keyword.operator.or.regexp",
"keyword.control.anchor.regexp"
],
"settings": {
"foreground": "#ff0000"
}
},
{
"scope": "constant.character",
"settings": {
"foreground": "#0000ff"
}
},
{
"scope": "constant.character.escape",
"settings": {
"foreground": "#a31515"
}
}

]
}
11 changes: 9 additions & 2 deletions themes/theme-defaults/themes/light_vs.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,13 @@
"name": "Light (Visual Studio)",
"include": "./light_defaults.json",
"tokenColors": [
{
"scope": ["meta.embedded", "source.groovy.embedded"],
"settings": {
"foreground": "#000000ff",
"background":"#ffffffff"
}
},
{
"scope": "emphasis",
"settings": {
Expand Down Expand Up @@ -237,11 +244,11 @@
}
},
{
"name": "JavaScript string interpolation ${}",
"name": "String interpolation",
"scope": [
"punctuation.definition.template-expression.begin",
"punctuation.definition.template-expression.end",
"punctuation.section.embedded.coffee"
"punctuation.section.embedded"
],
"settings": {
"foreground": "#0000ff"
Expand Down
Loading

0 comments on commit b8de1ce

Please sign in to comment.