defunkt / coffee-mode

Emacs Major Mode for CoffeeScript
http://ozmm.org/posts/coffee_mode.html
574 stars 147 forks source link

Indentation after `then` #350

Closed Spadavecchia closed 8 years ago

Spadavecchia commented 8 years ago

When using if x then y or when x then y the next line should not to add indentation

# bad
if x then y
  new_line = 'here'

switch x
  when y then z
    new_line = 'here'

# good
if x then y
new_line = 'here'

switch x
  when y then z
  new_line = 'here'
syohex commented 8 years ago

Thanks for reporting issue. I have fixed this issue at #352. Please check latest version.