Closed jpstotz closed 2 years ago
If I format a try-finally block or a try-catch - finally block the output is inconsistent regarding new lines and indentation:
try { a(); } finally { b(); }
becomes
Note the line break before finally.
finally
And for try-catch-finally:
try { x(); } catch (e) { y(); } finally { z(); }
Before catch there is no line break (correct) but before finally again a line-break is inserted which is a bit inconsistent.
catch
Observed using JSTool not NPP v1.2202.0.0
Fixed in 8a7fb6169416e008597eaab92869095339ee671a 1.2205.0 will release soon.
If I format a try-finally block or a try-catch - finally block the output is inconsistent regarding new lines and indentation:
becomes
Note the line break before
finally
.And for try-catch-finally:
becomes
Before
catch
there is no line break (correct) but beforefinally
again a line-break is inserted which is a bit inconsistent.Observed using JSTool not NPP v1.2202.0.0