rukano / emacs-faust-mode

Faust major mode for editing faust code (.dsp files)
13 stars 7 forks source link

Nested with/letrec blocks do not indent well #17

Open jpcima opened 3 years ago

jpcima commented 3 years ago

Hi, there is a problem with indenting with blocks when nesting. The indentation level is not increasing with depth.

For example

process = x with {
  x = y with {
  y = z with {
  z = 1;
};
};
};