rukano/emacs-faust-mode

Nested with/letrec blocks do not indent well

Opened this issue · 0 comments

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;
};
};
};