NixOS / nix-mode

An Emacs major mode for editing Nix expressions.
GNU Lesser General Public License v2.1
298 stars 76 forks source link

Incorrect highlighting when an secaped $ not followed by { in indented strings #167

Open jasom opened 2 years ago

jasom commented 2 years ago

''${foo} is handled correctly, but ''$FOO is not. Simple example:

`` let foo = ''

hi ''$FOO ''; in { a = 3; } ``