Skip to content

Commit

Permalink
- Fixed broken keyword classification highlight in previous commits
Browse files Browse the repository at this point in the history
  • Loading branch information
wmjordan committed Dec 20, 2018
1 parent e99c890 commit 9c68d90
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions Codist/Classifiers/CSharpCodeFormats.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ namespace Codist.Classifiers
[ClassificationType(ClassificationTypeNames = Constants.CodeControlFlowKeyword)]
[Name(Constants.CodeControlFlowKeyword)]
[UserVisible(false)]
[Order(After = Constants.CodeFormalLanguage)]
[Order(After = Constants.CodeKeyword)]
sealed class ControlFlowKeywordFormat : ClassificationFormatDefinition
{
public ControlFlowKeywordFormat() {
Expand All @@ -21,7 +21,7 @@ public ControlFlowKeywordFormat() {
[ClassificationType(ClassificationTypeNames = Constants.CodeAbstractionKeyword)]
[Name(Constants.CodeAbstractionKeyword)]
[UserVisible(false)]
[Order(After = Constants.CodeFormalLanguage)]
[Order(After = Constants.CodeKeyword)]
sealed class AbstractionKeywordFormat : ClassificationFormatDefinition
{
public AbstractionKeywordFormat() {
Expand All @@ -33,7 +33,7 @@ public AbstractionKeywordFormat() {
[ClassificationType(ClassificationTypeNames = Constants.CodeBranchingKeyword)]
[Name(Constants.CodeBranchingKeyword)]
[UserVisible(false)]
[Order(After = Constants.CodeFormalLanguage)]
[Order(After = Constants.CodeKeyword)]
sealed class BranchingKeywordFormat : ClassificationFormatDefinition
{
public BranchingKeywordFormat() {
Expand All @@ -45,7 +45,7 @@ public BranchingKeywordFormat() {
[ClassificationType(ClassificationTypeNames = Constants.CodeLoopKeyword)]
[Name(Constants.CodeLoopKeyword)]
[UserVisible(false)]
[Order(After = Constants.CodeFormalLanguage)]
[Order(After = Constants.CodeKeyword)]
sealed class LoopKeywordFormat : ClassificationFormatDefinition
{
public LoopKeywordFormat() {
Expand All @@ -57,7 +57,7 @@ public LoopKeywordFormat() {
[ClassificationType(ClassificationTypeNames = Constants.CSharpResourceKeyword)]
[Name(Constants.CSharpResourceKeyword)]
[UserVisible(false)]
[Order(After = Constants.CodeFormalLanguage)]
[Order(After = Constants.CodeKeyword)]
sealed class ResourceKeywordFormat : ClassificationFormatDefinition
{
public ResourceKeywordFormat() {
Expand Down

0 comments on commit 9c68d90

Please sign in to comment.