bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#60186: 29.0.60; ruby-mode indentation of multi-line expressions


From: Dmitry Gutov
Subject: bug#60186: 29.0.60; ruby-mode indentation of multi-line expressions
Date: Tue, 20 Dec 2022 04:12:39 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.4.2

On 19/12/2022 04:54, Aaron Jensen wrote:

Follow-up to bug#60110

Thanks!

I prefer rather simplictic indentation for Ruby (and this appears to be
pretty common from codebases I've seen). Essentially, the rule is: If an
expression continues on another line, indent it once.

FWIW, this feels a little wasteful -- working to emulate the editors which don't have much of a grammar definition, so they mostly line up things to the beginning of the previous line (plus maybe the indentation offset).

But I guess that can make some experience better when working in teams.

Current:

some_variable = some_object.
                   some_method

Desired:

some_variable = some_object.
   some_method

Current:

some_variable = some_number + some_other_number *
                               some_third_number + some_fourth_number -
                 some_fifth_number

Desired:

some_variable = some_number + some_other_number *
   some_third_number + some_fourth_number -
   some_fifth_number

This was easier to change than I expected, so here's some patch attached. It's very WIP -- before moving it to release some reorganization of indentation rules is in order, to be able to put the new option in just one place, and to streamline how indentation after "." works.

This won't make it into 29.1, but we can put ruby-mode in ELPA after.

I don't know if this last one is related or not, but it follows the same
rule plus the rule about blocks. Everything about the continuation of
the expression is indented once. The contents of the block are indented
once more. The end should line up with the line that opened the block.

Current:

some_variable = some_array.
                   map do |x|
   x + 1
end

Desired:

some_variable = some_array.
   map do |x|
     x + 1
   end

This will take some more work too. Not in the least because the "Desired" forms looks illogical (at least in the context of SMIE): we're already "escaping" the current syntax node to line the indentation of the block to the beginning of the statement (which makes sense, at least from the ergonomics POV), so why would the line break matter?

Take more complex cases. How much indentation will the block have after some heterogeneous continuations? Is this right?

  some_variable = 4 +
    some_array.
      reduce do |acc, x|
        acc + x
      end

What if the continuations are all after the same operator?

  some_variable = 4 +
    some_var +
    some_array.reduce do |acc, x|
      acc + x
    end

  some_variable = some_var.
    some_method.
    map do |x|
      x + 1
    end






reply via email to

[Prev in Thread] Current Thread [Next in Thread]