mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-10 16:20:17 -08:00
* lisp/progmodes/ruby-ts-mode.el (ruby-ts--indent-rules): Fix indentation for parenthesized_expression and else/end after 'unless'. * test/lisp/progmodes/ruby-mode-resources/ruby-ts.rb: New examples.
33 lines
246 B
Ruby
33 lines
246 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
|
|
|
|
# Local Variables:
|
|
# mode: ruby-ts
|
|
# End:
|