mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-09 07:40:39 -08:00
* lisp/progmodes/ruby-ts-mode.el (ruby-ts--method-call-indent-p): New function. (ruby-ts--indent-rules): Use it. * test/lisp/progmodes/ruby-ts-mode-tests.el: Run indent test for ruby-method-call-indent.rb. * test/lisp/progmodes/ruby-mode-resources/ruby-ts.rb: Add explicit value for ruby-method-call-indent.
63 lines
663 B
Ruby
63 lines
663 B
Ruby
variable = foo(
|
|
[
|
|
qwe
|
|
], [
|
|
rty
|
|
], {
|
|
a: 3
|
|
}
|
|
)
|
|
|
|
tee = [
|
|
qwe
|
|
]
|
|
|
|
qux = [1,
|
|
2]
|
|
|
|
att = {a: 1,
|
|
b: 2}
|
|
|
|
a = 1 ? 2 :(
|
|
2 + 3
|
|
)
|
|
|
|
unless bismark
|
|
sink += 12
|
|
else
|
|
dog = 99
|
|
end
|
|
|
|
foo1 =
|
|
subject.update(
|
|
1
|
|
)
|
|
|
|
foo2 =
|
|
subject.
|
|
update(
|
|
# Might make sense to indent this to 'subject' instead; but this
|
|
# style seems more popular.
|
|
2
|
|
)
|
|
|
|
foo > bar &&
|
|
tee < qux
|
|
|
|
1 .. 2 &&
|
|
3
|
|
|
|
a = foo(j, k) -
|
|
bar_tee
|
|
|
|
qux = foo.fee ?
|
|
bar :
|
|
tee
|
|
|
|
# Local Variables:
|
|
# mode: ruby-ts
|
|
# ruby-after-operator-indent: t
|
|
# ruby-block-indent: t
|
|
# ruby-method-call-indent: t
|
|
# ruby-method-params-indent: t
|
|
# End:
|