derekwyatt / vim-scala

My work on integration of Scala into Vim - not a ton here, but useful for me.
http://derekwyatt.org
Apache License 2.0
1.09k stars 144 forks source link

sealed and abstract are not highlighted when used as class/trait modifiers #125

Open slothspot opened 8 years ago

slothspot commented 8 years ago

In code example like following: sealed trait List[+A] sealed modifier is not highlighted.

Same for: abstract class T { ... }

Quick workaround, which looks incorrect, is to link scalaKeywordModifier to Keyword: hi link scalaKeywordModifier Keyword

But I suppose that correct solution to problem is to move abstract, sealed to separate modifiers group