From: "drbrain (Eric Hodel)" <drbrain@...7.net>
Date: 2013-01-26T06:46:15+09:00
Subject: [ruby-core:51680] [ruby-trunk - Bug #5357][Assigned] Indentation of nested operators should nest


Issue #5357 has been updated by drbrain (Eric Hodel).

Status changed from Feedback to Assigned
Target version set to next minor


----------------------------------------
Bug #5357: Indentation of nested operators should nest
https://bugs.ruby-lang.org/issues/5357#change-35647

Author: now (Nikolai Weibull)
Status: Assigned
Priority: Normal
Assignee: nobu (Nobuyoshi Nakada)
Category: misc
Target version: next minor
ruby -v: trunk


Hi!

Currently,

return if
  hash.
    values_at(:a, :b, :c).
    reject{ |e| e.nil? or e.empty? }.
    empty?

is indented

as

return if
  hash.
  values_at(:a, :b, :c).
  reject{ |e| e.nil? or e.empty? }.
  empty?

I would prefer it to be indented as in the first example.


-- 
http://bugs.ruby-lang.org/