Skip to content

Commit ac5fe2d

Browse files
authored
Merge pull request #282 from tgodzik/named-bounds
improvement: Show named bounds properly
2 parents 4e8c40f + 1d4029f commit ac5fe2d

File tree

4 files changed

+98
-1
lines changed

4 files changed

+98
-1
lines changed

src/typescript/Scala.tmLanguage.ts

+18
Original file line numberDiff line numberDiff line change
@@ -297,6 +297,9 @@ export const scalaTmLanguage: TmLanguage = {
297297
{
298298
include: '#xml-literal'
299299
},
300+
{
301+
include: '#namedBounds'
302+
},
300303
{
301304
include: '#keywords'
302305
},
@@ -1018,6 +1021,21 @@ export const scalaTmLanguage: TmLanguage = {
10181021
],
10191022
comment: 'For themes: Brackets look nice when colored.'
10201023
},
1024+
namedBounds: {
1025+
patterns: [
1026+
{
1027+
match: `\\s+(as)\\s+(${idLower})\\b`,
1028+
captures: {
1029+
'1': {
1030+
name: 'keyword.other.import.as.scala'
1031+
},
1032+
'2': {
1033+
name: 'variable.stable.declaration.scala'
1034+
}
1035+
}
1036+
}
1037+
]
1038+
},
10211039
qualifiedClassName: {
10221040
match: `(\\b([A-Z][\\w]*)(?:(?<=_)${opchar}+)?)`,
10231041
captures: {

0 commit comments

Comments
 (0)