atom / language-puppet

Puppet package for Atom
Other
36 stars 31 forks source link

Variables break builtin function syntax highlighting #45

Closed alexjurkiewicz closed 5 years ago

alexjurkiewicz commented 8 years ago

This code syntax highlights correctly:

myfunction("foo") # myfunction is normal text
fail("foo") # fail is a builtin function

But this doesn't:

fail("foo ${var}") # appears as normal text as soon as the ${ appears