Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

Commit

Permalink
Merge pull request #118 from worldbeater/master
Browse files Browse the repository at this point in the history
Black method parameters highlighting
  • Loading branch information
damieng committed Apr 19, 2018
2 parents 6005ce3 + 3b93970 commit 171dfa1
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions grammars/csharp.cson
Original file line number Diff line number Diff line change
Expand Up @@ -919,11 +919,11 @@ repository:
}
]
"6":
name: "entity.name.variable.field.cs"
name: "variable.other.cs"
end: "(?=;)"
patterns: [
{
name: "entity.name.variable.field.cs"
name: "variable.other.cs"
match: "[_[:alpha:]][_[:alnum:]]*"
}
{
Expand Down Expand Up @@ -1829,7 +1829,7 @@ repository:
}
]
"7":
name: "entity.name.variable.local.cs"
name: "variable.other.cs"
"8":
name: "keyword.control.loop.in.cs"
}
Expand Down Expand Up @@ -1947,7 +1947,7 @@ repository:
}
]
"6":
name: "entity.name.variable.local.cs"
name: "variable.other.cs"
}
]
}
Expand Down Expand Up @@ -2108,11 +2108,11 @@ repository:
}
]
"8":
name: "entity.name.variable.local.cs"
name: "variable.other.cs"
end: "(?=;|\\))"
patterns: [
{
name: "entity.name.variable.local.cs"
name: "variable.other.cs"
match: "[_[:alpha:]][_[:alnum:]]*"
}
{
Expand Down Expand Up @@ -2158,11 +2158,11 @@ repository:
}
]
"7":
name: "entity.name.variable.local.cs"
name: "variable.other.cs"
end: "(?=;)"
patterns: [
{
name: "entity.name.variable.local.cs"
name: "variable.other.cs"
match: "[_[:alpha:]][_[:alnum:]]*"
}
{
Expand Down Expand Up @@ -2314,7 +2314,7 @@ repository:
}
]
"7":
name: "entity.name.variable.local.cs"
name: "variable.other.cs"
"declaration-expression-tuple":
match: '''
(?x) # e.g. int x OR var x
Expand Down Expand Up @@ -3145,7 +3145,7 @@ repository:
}
]
"7":
name: "entity.name.variable.parameter.cs"
name: "variable.parameter.function.cs"
"argument-list":
begin: "\\("
beginCaptures:
Expand Down Expand Up @@ -3190,7 +3190,7 @@ repository:
begin: "([_[:alpha:]][_[:alnum:]]*)\\s*(:)"
beginCaptures:
"1":
name: "entity.name.variable.parameter.cs"
name: "variable.parameter.function.cs"
"2":
name: "punctuation.separator.colon.cs"
end: "(?=(,|\\)|\\]))"
Expand Down Expand Up @@ -3483,7 +3483,7 @@ repository:
"1":
name: "storage.modifier.cs"
"2":
name: "entity.name.variable.parameter.cs"
name: "variable.parameter.function.cs"
"3":
name: "keyword.operator.arrow.cs"
end: "(?=\\)|;|}|,)"
Expand Down Expand Up @@ -3611,7 +3611,7 @@ repository:
}
]
"7":
name: "entity.name.variable.parameter.cs"
name: "variable.parameter.function.cs"
type:
name: "meta.type.cs"
patterns: [
Expand Down

0 comments on commit 171dfa1

Please sign in to comment.