Skip to content
This repository has been archived by the owner on Aug 16, 2021. It is now read-only.

Commit

Permalink
Fix delete keyword highlighting
Browse files Browse the repository at this point in the history
  • Loading branch information
jolaleye committed Jun 14, 2019
1 parent 0eea718 commit bf126fc
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 2 deletions.
7 changes: 6 additions & 1 deletion src/bright/template.json
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,12 @@
},
{
"name": "Special operators",
"scope": ["keyword.operator.new", "keyword.operator.expression", "keyword.operator.logical"],
"scope": [
"keyword.operator.new",
"keyword.operator.expression",
"keyword.operator.logical",
"keyword.operator.delete"
],
"settings": {
"foreground": "{{ syntax.amethyst }}"
}
Expand Down
7 changes: 6 additions & 1 deletion src/dark/template.json
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,12 @@
},
{
"name": "Special operators",
"scope": ["keyword.operator.new", "keyword.operator.expression", "keyword.operator.logical"],
"scope": [
"keyword.operator.new",
"keyword.operator.expression",
"keyword.operator.logical",
"keyword.operator.delete"
],
"settings": {
"foreground": "{{ syntax.lavender }}{{ alpha.high }}"
}
Expand Down

0 comments on commit bf126fc

Please sign in to comment.