tomlion / vim-solidity

Vim syntax file for solidity
MIT License
490 stars 321 forks source link

highlight chained modifiers correctly #2

Closed nmushegian closed 9 years ago

nmushegian commented 9 years ago

If you chain several modifiers (or keywords) together, some do not get colored correctly:

function example()
         modifier1()
         constant
         modifier2()
         internal
         returns (bool)
nmushegian commented 9 years ago

Thanks for the fast response!