oxalica / nil

NIx Language server, an incremental analysis assistant for writing in Nix.
Apache License 2.0
1.38k stars 40 forks source link

Parsing error when single quotes are used in indented strings #75

Closed figsoda closed 1 year ago

figsoda commented 1 year ago
{ stdenv
, x # nil warns "unused binding", but it is used
}:

stdenv.mkDerivation {
  x = '''${x}'';
  # x = "'${x}"; # this works
}