voxpupuli / puppet-mode

Edit Puppet manifests with GNU Emacs 24
https://github.com/voxpupuli/puppet-mode
GNU General Public License v3.0
90 stars 60 forks source link

Indentation for if (...) {...} is wrong #100

Closed darkfeline closed 7 years ago

darkfeline commented 7 years ago

Expected:

  if (
    $thing
    and $thing
  ) {
  }

Actual:

  if (
    $thing
    and $thing
) {
  }
paran1 commented 7 years ago

This seems to work as expected in the current master branch.

darkfeline commented 7 years ago

Indeed. I'll reopen if I reproduce it