Skip to content

Commit

Permalink
Merge pull request #635 from prefiks/master
Browse files Browse the repository at this point in the history
Fix problem with syntax highlihtingting
  • Loading branch information
basarat committed Oct 4, 2015
2 parents f2165ca + 2af4971 commit 1424dda
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions grammars/typescript.cson
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@
'name': 'keyword.operator.js'
'patterns': [
{
'include': '$self'
'include': '$base'
}
]
}
Expand Down Expand Up @@ -327,14 +327,14 @@
'1':
'name': 'meta.delimiter.semicolon.js'
'patterns': [
'include': '$self'
'include': '$base'
]
}
{
'include': '#curlybracerecursion'
}
{
'include': '$self'
'include': '$base'
}
{
'match': ';'
Expand Down Expand Up @@ -515,7 +515,7 @@
'include': '#comma'
'patterns': [
{
'include': '$self'
'include': '$base'
}
]
}
Expand Down Expand Up @@ -632,7 +632,7 @@
'name': 'keyword.operator.js'
'patterns': [
{
'include': '$self'
'include': '$base'
}
]
}
Expand All @@ -649,7 +649,7 @@
'name': 'meta.brace.square.js'
'patterns': [
{
'include': '$self'
'include': '$base'
}
]
}
Expand All @@ -662,7 +662,7 @@
'name': 'meta.brace.round.js'
'patterns': [
{
'include': '$self'
'include': '$base'
}
]
}
Expand Down Expand Up @@ -723,12 +723,12 @@
'name': 'meta.brace.curly.js'
'patterns': [
{
'include': '$self'
'include': '$base'
}
]

'type':
'begin': '(?=)'
'begin': '(?=[\\(\\{\\p{L}\\p{Nl}$_])'
'end': '(?<!\\*\\/)(?<!\\|)(?<!\\s)(?<!\\.)(?!\\G)(?!\\.)(?!\\s*\\|)'
'patterns': [
{
Expand Down Expand Up @@ -776,7 +776,7 @@
]

'typeinheritedfrom':
'begin': '(?=)'
'begin': '(?=[\\(\\{\\p{L}\\p{Nl}$_])'
'end': '(?<!\\*\\/)(?<!\\|)(?<!\\.)(?!\\G)(?!\\.)(?!\\|)'
'patterns': [
{
Expand Down Expand Up @@ -1047,7 +1047,7 @@
'name': 'punctuation.definition.parameters.end.js'
'patterns': [
{
'include': '$self'
'include': '$base'
}
]

Expand Down

0 comments on commit 1424dda

Please sign in to comment.